#include <iostream> #include<iomanip> using namespace std; int main() { float w,h,a; while(cin>>w>>h) { a=h/100; cout<<fixed<<setprecision(1)<<w/(a*a)<<endl; } return 0; }