1. 변수 따로 받기
x,y = input().split(' ')
x,y = map(int,input().split(' '))
2. 리스트로 받기
x = input.split(' ') #x = list(input.split(' ')) 할 필요 없음
x = list(map(int,input().split(' ')))
3. input 더 빨리 받는 방법
input() 대신 sys.stdin.readline().rstrip()
x = list(map(int,(sys.stdin.readline().rstrip().split(' '))))