Run ID:95229

提交时间:2024-10-27 10:19:23

#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a+b>c) cout<<"yes"; else cout<<"no"; return 0; }