python中是没有&&及||这两个运算符
input_val=input().split(" ")
weight,height=map(float,input_val)
bmi=weight/((height)**2)
if bmi>18.5 and bmi<23.9:
print("Normal")
else:
print("Abnormal")
python中是没有&&及||这两个运算符
input_val=input().split(" ")
weight,height=map(float,input_val)
bmi=weight/((height)**2)
if bmi>18.5 and bmi<23.9:
print("Normal")
else:
print("Abnormal")