Python/백준
백준 - 10951 a+b -4
sophia02
2022. 10. 25. 23:24
while True:
try:
a, b = map(int, input().split())
print(a+b)
except:
break