Help me in solving GS09 problem

My issue

why 3 is not printed

My code

# Update the '_' in the code below

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

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

@siddhardhreddy
U have to fill up the blanks like this.

# Update the '_' in the code below

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