Help me in solving GS13B problem

My issue

i got the correct output but it is showing the wrong answer while i am submitting my code

My code

n=int(input())
for i in range(0,n):
    print(i+1)
    

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

That’s a correct code .
t = int(input())
for i in range(t):
n = int(input())
print(n+1)