a = [1,2,3,4]print(a) n = int(input())b = []for i in range(n): b.append(int(input()))print(b) c = [int(x) for x in input().split()]print(c)
3 11 12 13 1 2 3 4 5 6 7 8 9
[1, 2, 3, 4] [11, 12, 13] [1, 2, 3, 4, 5, 6, 7, 8, 9]
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!