Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89538 | 徐文杰 | 07a+b>c | C++ | Wrong Answer | 0 MS | 264 KB | 204 | 2024-08-25 14:32:08 |
#include<iostream> using namespace std; int main(){ int a,s,d; cin>>a>>s>>d; if(a+s>d){ cout<<"YES"; } else{ cout<<"NO"; } }
------Input------
70 480 94
------Answer-----
Yes
------Your output-----
YES