To read it as a list you need to have a separator in the input which will be used to define the different list items.
Lets say these values are space separated then to take input in python 3 -
s=input()
a=list(s.split(" ")) # " " is the words separator
print(a)
you can read complete about lists in this tutorial.