#include using namespace std; int main(){ int i,n,m,k; cin >> n >> m >> k; if(m + k<=n) cout << "Yes\n"; else cout << "No\n"; }