Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92813 | 徐梓涵 | 07a+b>c | Python3 | Wrong Answer | 37 MS | 3760 KB | 105 | 2024-10-06 14:53:06 |
a=int(input()) b=int(input()) c=int(input()) if a+b>c: print('Yes') else: print('No')
------Input------
70 480 94
------Answer-----
Yes
------Your output-----