본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 26711번 A+B

by 현장 2022. 12. 22.

-Code

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