提交时间:2024-09-22 21:47:09

运行 ID: 51605

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