Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
76223 胡皓宇 判断身材 Python3 Accepted 36 MS 3772 KB 149 2024-06-02 09:03:48

Tests(3/3):


Code:

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