sample input:
32 42 4 423 43 2 3
my code to convert the input into a list of integers:
mylist = map(int, (list(input().split(' '))))
print(mylist)
output of my code:
<map object at 0x7f0eb38f1d30>
Expected output:
[32, 42, 4, 423, 43, 2, 3]