Run ID:117860

提交时间:2025-04-20 13:42:01

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