Run ID:117852

提交时间:2025-04-20 13:31:21

#include<bits/stdc++.h> using namespace std; int main() { int a, b, c; cin >> a >> b; if (a + b > c) { cout << "NO"; } else { cout << "YES"; } return 0; }