Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94134 | 徐盛熠 | 07a+b>c | Python3 | Wrong Answer | 32 MS | 3760 KB | 125 | 2024-10-19 19:31:31 |
c=input().split() a=c[0] a=int(a) b=c[1] x=c[2] x=int(x) b=int(b) if a+b>x: print("YES") else : print("NO")
------Input------
70 480 94
------Answer-----
Yes
------Your output-----
YES