프로그래밍_일반/백준
boj 7510
Spadework
2020. 2. 9. 15:08
* Solved 기준 브론즈3 단순 풀이
for i in range(int(input())):
l = sorted(map(int, input().split()))
print('Scenario #{}:\n{}\n'.format(i+1, 'yes' if l[2]**2==l[1]**2+l[0]**2 else 'no'))