Search

42. 백준_Python [5717] 상근이의 친구들

while True: A,B = map(int,input().split()) if A == 0 and B == 0: break print(A + B)
Python
복사