#include <iostream> #include <iomanip> using namespace std; int main(){ double s,a,b; cin>>a>>b; s=a/b*1.0; cout<<fixed<<setprecision(5)<<s<<endl; }