Run ID:106294
提交时间:2025-01-15 21:24:10
#include <bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; bool n=a+b>c?true:false; if(n) { cout<<"Yes"; } else{ cout<<"No"; } return 0; }