#include <stdio.h> int main() { int height=0; int weight=0; double BMI=0.0; scanf("%d %d",&weight,&height); BMI=weight/(height*height/10000.0); printf("%.2lf",BMI); return 0; }