import sys
input = sys.stdin.readline
while True:
nums = list(map(int, input().split()))
# a,b,c 모두가 0일 경우 break
if sum(nums) == 0:
break
# nums 배열을 오름차순으로 정렬
nums.sort()
# a제곱 + b제곱 = c제곱일 시 맞음
if nums[2] ** 2 == (nums[0] ** 2 + nums[1] ** 2):
print("right")
else:
print("wrong")
'공부 > 코딩테스트' 카테고리의 다른 글
[코딩테스트 연습(Python)] 백준 1181번_단어 정렬 (0) | 2025.04.07 |
---|---|
[코딩테스트 연습(Python)] 백준 10814번_나이순 정렬 (0) | 2025.04.07 |
[코딩테스트 연습(Python)] 백준 2563번_색종이 (0) | 2025.04.03 |
[코딩테스트 연습(Python)] 백준 2941번_크로아티아 알파벳 (0) | 2025.03.20 |
[코딩테스트 연습(Python)] 백준 10988번_팰린드롬인지 확인하기 (0) | 2025.03.18 |