본문 바로가기
알고리즘/백준

백준-1000번(A+B)-python

by nyeongha 2023. 11. 23.
a, b = map(int, input().split())
print(a+b)