Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84401 丁俊杰 判断身材 Python3 Accepted 39 MS 3756 KB 138 2024-07-15 19:00:09

Tests(3/3):


Code:

a,b=map(int,input().split()) c=(a-100)*0.9 if b>c*1.1: print("fat") elif b<c*0.9: print("thin") else: print("standard")