본문 바로가기
알고리즘/백준

백준-10951번(A+B-4)-python

by nyeongha 2023. 11. 23.

백준-10951번(A+B-4)-python

while True:
    try:
        a, b = map(int, input().split())
        print(a + b)
    except:
        break