Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92808 | 余泽越 | 07a+b>c | Python3 | Wrong Answer | 37 MS | 3756 KB | 117 | 2024-10-06 14:49:38 |
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if a+b>c: print("YES") else: print("NO")
------Input------
70 480 94
------Answer-----
Yes
------Your output-----