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