健康评估_python3
健康评估
http://www.nowcoder.com/questionTerminal/08b28e61ff6345febf09969b3a167f7e
def isNormal(weight, high):
value = weight/(high**2)
return True if value >= 18.5 and value <= 23.9 else False
while True:
try:
weight, high = map(float, input().split())
print('Normal' if isNormal(weight, high) else 'Abnormal')
except EOFError:
break

