OI-Codes/XSM OJ 重庆小码王集团OJ/三角形组成判断.cpp
2024-02-15 22:38:30 +08:00

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