Ввод питона с пространством

In []:
list(map(int, input().split()))

Input:
1 2 3 4 5

Out[]:
[1, 2, 3, 4, 5]
AntMan