본문 바로가기

카테고리 없음

백준 4153번 "직각삼각형"

파이썬

import sys

while True:
    x, y, z = map(int, sys.stdin.readline().split())
    if [x, y ,z] == [0, 0, 0] :
        break;
    temp = [x, y, z]
    temp.sort()
    if temp[2]**2 == temp[1]**2 + temp[0]**2:
        print("right")
    else:
        print("wrong")