본문 바로가기

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

#2 백준 파이썬 [1000] A+B

#2 [1000] A+B

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





#2 [1000] Solution

a,b = list(map(int, input().split()))
print(a+b)