Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104459 赵乘浩 07a+b>c Python3 Accepted 38 MS 3764 KB 85 2025-01-05 09:44:39

Tests(10/10):


Code:

a,b,c = map(int,input().split()) if a+b>c: print("Yes") else: print("No")