mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
16 lines
181 B
C++
16 lines
181 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
int b;
|
|
int c;
|
|
cin >>a>>b>>c;
|
|
if(a<b+c && b<a+c && c<b+a){
|
|
cout <<"yes";
|
|
}
|
|
else{
|
|
cout <<"no";
|
|
}
|
|
return 0;
|
|
}
|