Help me in solving GS16 problem

My issue

print(2*N)

My code

# Debug the code below to solve the problem

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

Learning course: Logic Building in Python
Problem Link: CodeChef: Practical coding for everyone

@firas_123
Plzz refer the following code for debugging.

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