문제
https://www.acmicpc.net/problem/4153
접근
sorted(문자열) 은 리스트로 반환된다.
python
내 코드
import sys
input = sys.stdin.readline
while(True) :
nums = sorted(map(int, input().split()))
if(max(nums) == 0) :
break
print("right") if nums[0]**2 + nums[1]**2 == nums[2]**2 else print("wrong")