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