Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89456 张祁清 07a+b>c Python3 Accepted 40 MS 3756 KB 85 2024-08-24 20:26:53

Tests(10/10):


Code:

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