#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; double z=a/b; cout<<fixed<<setprecision(9)<<z; return 0; }