Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
71565 娄瀚兮 判断身材 Python3 Accepted 35 MS 3764 KB 159 2024-04-25 21:32:04

Tests(3/3):


Code:

h,w = input().split() h,w=int(h),int(w) sw = (h-100)*0.9 if w > sw*1.1: print("fat") elif w < sw*0.9: print("thin") else: print("standard")