#34102: ___.


yp11151230@yphs.tp.edu.tw (909-42蔡亞儒)


#include <bits/stdc++.h>

using namespace std;

int main()

{

double w,h;

while(cin>>w>>h)

{

h/=100;

cout<<fixed<<setprecision(1)<<w/(h*h)<<endl;

}

 

 

 }