Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
105085 | 伍长辉 | 07a+b>c | Python3 | Wrong Answer | 39 MS | 3764 KB | 98 | 2025-01-12 14:09:59 |
a,b,c=input().split() a=int(a) b=int(b) c=int(c) if a>b>c: print('yes') else: print('No')
------Input------
70 480 94
------Answer-----
Yes
------Your output-----
No