Help me in solving GS13B problem

My issue

Couldn’t understand the problem statemente.

My code

# Change the 'custom inputs' below and click 'run'
# Click on 'Submit' once you have tried out to proceed to the next problem

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

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

Problem statement says that for every test case you need to take an integer as an input and output an integer greater than the input integer by 1.