Help me in solving GS09 problem

My issue

My code

# Update the '_' in the code below

#accept the count of test cases given in the the 1st line
t = [3,1,22,33]
#Run a loop to accept 't' inputs
for i in t:     
    #accept an integer N in each test case
    N = int(i)         
    #output the number mirror for each test case
    print(N)           

Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone

@gjgauravjain26
U have to do it like this

t = int(input())
for i in range(t):
N = int(input())
print(N)