#include using namespace std; int N, M, K; int main() { cin >> N >> M >> K; if (M + K <= N) cout << "Yes" << endl; else cout << "No" << endl; return 0; }