알고리즘 공부/백준 > Python3
[백준 파이썬] #10951: A+B - 4
IS_배키
2020. 11. 1. 23:57
https://www.acmicpc.net/problem/10951
10951번: A+B - 4
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
[정답]
try:
while True:
a,b=input().split()
print(int(a)+int(b))
except:
exit()