#include <iostream>#include <iomanip>using namespace std;int main() { int weight; double height; cin >> weight >> height; cout<<fixed<<setprecision(1)<<weight/(height*height);
return 0;}
//嚴禁抄襲!