#include <iostream> using namespace std; int main(){ //float a; //a=1.23456; //printf("%.2f",a); float a,b; cin>>a>>b; printf("%.5f",a/b); }