Run ID:71564
提交时间:2024-04-25 21:26:49
h,w = input().split() #h:height 身高, w:weight 体重 h,w =int(h),int(w) sw = (h-100)*0.9 #sw: stardard weight 标准体重 if w > sw*1.1: print("fat") elif w < sw*0.9: print("thin") else: print("standard")