Help me in solving PREQ11 problem

My issue

give the code

My code

# Debug the following code to solve the problem

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

Learning course: Design and Analysis of Algorithms
Problem Link: Debug this code - Why is this code incorrect in Design and Analysis of Algorithms

for _ in range(t)

should be for i in range (t):