#include<bits/stdc++.h> using namespace std; int main(){ double n,m,x; cin>>n>>m; x=n/m; cout<<fixed<<setprecision(12)<<x<<endl; return 0; }