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