Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97925 谭景年 判断身材 Python3 Wrong Answer 34 MS 3760 KB 117 2024-11-16 20:40:59

Tests(2/3):


Code:

s=input().split(" ") a=int(s[0]) b=int(s[1]) if b>=1.1*(a-100)*0.9: print("fat") else: print("thin")


Run Info:

------Input------
175 70
------Answer-----
standard
------Your output-----
thin