arr = [] N, M = input().split(' ') n = int(N) m = int(M) arr.append(n) arr.append(m)
N, M = map(int, input().split(' ')) arr = list(map(int, input().split())) # 입력 : 1 2 3 4 5 # [1, 2, 3, 4, 5]
map()을 이용하면 간단하게 해결되는 것을 확인할 수 있다.