Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89568 刘佳宇 07a+b>c C++ Accepted 2 MS 272 KB 180 2024-08-25 14:48:48

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int A,B,C; cin>>A>>B>>C; if(A+B>C){ cout<<"Yes"; } else{ cout<<"No"; } }