#include <stdio.h>
int main() 
{
	int w,h;
	scanf("%d %d",&w,&h) ;
	double bmi;
	bmi=(double)w*10000/(h*h);
	printf("%.2lf",bmi);
    return 0;
}