| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 129585 | 叶航帅 | 07a+b>c | Python3 | Wrong Answer | 52 MS | 3764 KB | 106 | 2025-08-29 14:05:37 |
a,b,c = input().split() s = 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-----