0,0,0, 받을 때까지는 계속 입력 받을 수 있도록 함
if~elif로 경우의 수를 세서 진행
index = 0
cnt = 0
arr = [0]*30000
m,n,l= map(int,input().split())
while m!=0 and n!=0 and l!=0 :
if m>n and m>l and m**2==n**2+l**2 :
print("right")
elif n>m and n>l and n**2==m**2+l**2 :
print("right")
elif l>n and l>m and l**2==n**2+m**2 :
print("right")
else :
print("wrong")
m,n,l= map(int,input().split())
출처 : 출처
while True:
a = list(map(int, input().split()))
max_num = max(a)
if sum(a) == 0:
break
a.remove(max_num)
if a[0] ** 2 + a[1] ** 2 == max_num ** 2:
print('right')
else:
print('wrong')
.remove() 를 통해 배열 안의 값 제거 가능