Run ID:98550

提交时间:2024-11-23 11:28:25

#include<bits/stdc++.h> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(a<x+y){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }