[Python] BOJ 4153번. 직각삼각형 작성일 2020-05-14 | In Algorithm | 4153번. 직각삼각형 문제 링크 https://www.acmicpc.net/problem/4153 풀이 코드 123456789101112131415# 4153번. 직각삼각형 while True: nList = list(map(int, input().split())) nList.sort() if nList[0] == 0: break else: a = nList[0]**2 b = nList[1]**2 c = nList[2]**2 if c == a+b: print('right') else: print('wrong') 비고