数值计算
weight,height=input().split(" ") bmi=int(weight)/((int(height)/100)**2) print("{:.2f}".format(bmi))