본문 바로가기

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

#63 백준 파이썬 [10952] A + B - 5

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

 

#Solution

import sys

for line in sys.stdin:
    a, b = map(int, line.split())
    if a == 0 and b==0:
        break
    print(a+b)