본문 바로가기

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

#62 백준 파이썬 [10951] A + B - 4

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

 

 

#Solution

 

import sys

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