I tried to use raw_input() to get a list of numbers, however with the code
raw_input()
numbers = raw_input() print len(numbers)
the input
a=[] b=int(input()) for i in range(b): c=int(input()) a.append(c)
The above code snippets is easy method to get values from the user.