Baekjoon/Python3
[백준] 1000번 A+B
달의요정루나
2023. 6. 5. 11:45
https://www.acmicpc.net/problem/1000
1000번: A+B
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
a,b=input().split()
print(int(a)+int(b))