Python
a = int(input()) b = int(input()) BMI = b/(a*a) if BMI >26: print("正常偏瘦") else: print("偏胖")