#include <iostream> #include <cstdio> using namespace std; int main(){ float a,b; cin>>a>>b; printf("%.5f",a/b); return 0; }