Programming/백준
[백준] 10951 - A+B -4 (파이썬)
pental
2020. 4. 2. 10:21
while True:
try:
a, b = map(int, input().split())
print(a+b)
except:
break