BMI=float(input('同学们,请输入您的身体质量指数:'))
if BMI<18.5:
print('偏瘦')
if BMI>=18.5 and BMI<23:
print('正常')
if BMI>=23 and BMI<25:
print('偏胖')
if BMI>=25 and BMI<40:
print('肥胖')
else:
print('超胖,请同学锻炼身体')