3
4
600 v0u - W NE
while True:
try:
height, weight = input("height, weight:").split("")
height = float("height")
weight = float("weight")
bmi = weight/((height/100)**2)
if bmi <= 18.5 :
print("underweight")
elif 18.5 < bmi <= 25 :
print("normal weight")
elif 25 < bmi <= 30 :
print("overweight")
elif 30 < bmi :
print("obese")
10
11
12
13
14
15
16
except:
exit(print())
17
18
19
20
I