https://www.acmicpc.net/problem/1000
A,B=map(int,input().split()) print(A+B)
map 함수는 (요소1, 요소2)에서 요소2를 요소1로 지정해준다.
input 함수는 입력을할 수 있다.
split 함수는 괄호안의 내용으로 분리해준다.