#include<iostream> using namespace std; int main(){ double a,b; cin>>a>>b; cout.precision(9); cout<<fixed<<a/b; return 0; }