N = int(input()) A = [0] * Nfor i in range(0, N): A[i] = int(input()) print(A[4:])
6 10 20 30 40 50 60
[50, 60]
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!