题解 | #健康评估#
健康评估
http://www.nowcoder.com/practice/08b28e61ff6345febf09969b3a167f7e
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")