본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#183 백준 파이썬 [5717] 상근이의 친구들

https://www.acmicpc.net/problem/5717

 

 

#Solution

a, b = map(int, input().split())
while not (a == 0 and b == 0):
    print(a+b)
    a, b = map(int, input().split())