提交时间:2024-09-21 23:09:31

运行 ID: 51472

#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; }