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