공부/알고리즘

[백준]10952_python파이썬 풀이

happyeuni 2021. 8. 2. 17:44

내 풀이

while True:
    A, B = map(int, input().split())
    if A==0 & B==0 :
        break
    print(A+B)