Help me in solving GS13C problem

My issue

iam getting the correct output, still it is showing wrong answer

My code

# Change the 'custom inputs' below and click 'run'
# Once you have run the code - click on 'submit' to find the result with the private test files

input_str = (3,5,11,15)
t = input_str[0]
for i in range(t):
    n = input_str[i + 1]
    print(n + 1)
    

Learning course: Logic Building in Python
Problem Link: Practice Problem in - CodeChef

t = int(input())
for i in range(t):
n = int(input())
print(n+1) this is the correct answer try it