#include using namespace std; typedef long long ll; #define REP(i, x, y) for (auto i = (x); i < (y); i++) #define RREP(i, x, y) for (auto i = (y) - 1; (x) <= i; i--) #define ALL(x) (x).begin(), (x).end() #pragma GCC optimize("O3") int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, M, K; cin >> N >> M >> K; if(N >= M + K){ cout << "Yes\n"; }else{ cout << "No\n"; } return 0; } /* File : ~/yukicoder/midoriika_3rd/A.cpp Date : 2024/10/12 Time : 14:29:34 */