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