https://www.acmicpc.net/problem/4153
#Solution
import sys
for line in sys.stdin:
a, b, c = map(int, line.split())
if a**2 == b**2 + c**2 or b**2 == a**2 + c**2 or c**2 == a**2 + b**2:
if a == b == c == 0:
break
else:
print("right")
pass
else:
print("wrong")
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#74 백준 파이썬 [11727] 2xn 타일링 2 (0) | 2019.07.15 |
---|---|
#73 백준 파이썬 [9095] 1, 2, 3 더하기 (0) | 2019.07.15 |
#71 백준 파이썬 [11399] ATM (0) | 2019.07.15 |
#70 백준 파이썬 [2869] 달팽이는 올라가고 싶다 (0) | 2019.07.09 |
#69 백준 파이썬 [1712] 손익분기점 (0) | 2019.07.09 |