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
Try this:
numbers = raw_input() numberlist = list(numbers)