본문 바로가기

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

#13 백준 파이썬 [2558] A+B-2

#13 [2558] A+B-2

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



#13 [2558] Solution

a= int(input())
b= int(input())
print(a+b)