提交时间:2025-12-19 15:45:47

运行 ID: 76687

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e,f; cin>>a>>b>>c; d=a; if(b>d) d=b; if(c>d) d=c; e=a; if(b<e) e=b; if(c<e) e=c; f=a+b+c-d-e; if(d>f+e) cout<<"no"; if(d<f+e) cout<<"yes"; }