for _ in range(30000):
length = list(map(int, input().split()))
length = sorted(length, reverse=True)
if pow(length[0], 2) == 0 and length[1] == 0 and length[2] == 0:
break
if pow(length[0], 2) == pow(length[1], 2) + pow(length[2], 2):
print ("right")
else:
print ("wrong")
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 4673번 셀프 넘버 (C++) (0) | 2022.06.16 |
---|---|
[백준] 4344번 평균은 넘겠지 (C++) (0) | 2022.06.14 |
[백준] 3053번 택시 기하학 (파이썬) (0) | 2022.06.14 |
[백준] 3052번 나머지 (C++) (0) | 2022.06.14 |
[백준] 3009번 네 번째 점 (파이썬) (0) | 2022.06.14 |