题目描述
输入
输出
样例输入 Copy
样例输出 Copy
#include<bits/stdc++.h>
using namespace std;
int jud(int a,int b,int c);
int main()
{
int a,b,c;
cin>>a>>b>>c;
jud(a,b,c);
return 0;
}
int jud(int a,int b,int c)
{
if( a*a+b*b==c*c || b*b+c*c==a*a || c*c+a*a==b*b)
cout<<"yes";
else
cout<<"no";
return 0;
}