#include<bits/stdc++.h> using namespace std; int main() { int a,b; double c; cin>>a>>b; c=a*1.0/b; cout<<fixed<<setprecision(9)<<c; return 0; }