#include <iostream>
#include <string>
using namespace std;
int main()
{
int m;
cin>>m;
getchar();
while(m--)
{
int a,b,c;
cin>>a>>b>>c;
if(a+b>c && a+c>b && b+c>a)
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
}
return 0;
}
GKM的复试acm练习2039
最新推荐文章于 2019-03-14 17:04:42 发布