#include<stdio.h>
int main()
{	
	int a;
	float b,c;
	scanf("%d%f",&a,&b);
	b=b/100;
	c=a/(b*b);
	printf("%.2f",c);
	return 0;
}

\体重除了一百变成了小数要用浮点数。