백준 10951번 A+B - 4 파이썬
2022.03.07 16:17
백준 10951번 A+B - 4 파이썬 코드이다.
from sys import stdin
while True:
try:
a, b = map(int, stdin.readline().split())
print(a + b)
except:
break