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