1. 문제https://www.acmicpc.net/problem/4153 2. 해결try1) while True: nums = list(map(int, input().split())) if sum(nums) == 0: break maxNum = max(nums) nums.remove(maxNum) if nums[0]**2 + nums[1]**2 == maxNum**2: print("right") else: print("wrong") 3. check point테스트케이스에 0 0 0이 입력됐을 때 종료하는 코드remove()를 통해 제거