input=map(int,raw_input().split())
I input more than 13,000 elements from the stdin, but on printing the length of list it shows that it has only 2048 elements in it. Why is it so? Is it somehow related to the size of the input buffer?
input=map(int,raw_input().split())
I input more than 13,000 elements from the stdin, but on printing the length of list it shows that it has only 2048 elements in it. Why is it so? Is it somehow related to the size of the input buffer?