1000번 문제

1. 한 줄에 2개의 입력값 받아오기

2. 입력 받은 두 값을 더해서 출력

- python

A, B = int(input()).Split()

print(A + B)