Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94268 | 王晨鑫 | 07a+b>c | Python3 | Wrong Answer | 34 MS | 3768 KB | 124 | 2024-10-20 10:24:22 |
q=input().split() a=q[0] a=int(a) b=q[1] b=int(b) c=q[2] c=int(c) if a+b>c: print("YES") else: print("NO")
------Input------
70 480 94
------Answer-----
Yes
------Your output-----
YES