#include<stdio.h>
int main()
{
    int a,b,c;
    while(scanf("%d %d %d",&a,&b,&c)!=EOF)
    if(a*a+b*b==c*c||a*a+c*c==b*b||b*b+c*c==a*a)
    printf("yes");
    else
    printf("no");
    return 0;
} 

 

相关文章:

  • 2021-10-21
  • 2022-01-08
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-09-09
相关资源
相似解决方案