백준 알고리즘/python
[ 1000 ] A+B
power-girl0-0
2021. 2. 25. 00:19
728x90
a,b = input().split()
a=int(a)
b=int(b)
print(a+b)
728x90