Help me in solving GS13B problem

My issue

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(3
100
200
300))
for i in range(t):
    n = int(input())
    print(n+1)

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

Heyya,

You don’t have to copy the inputs in “input” brackets instead of that write it under the " Test against Custom Input ". Have a look at the example below:

After changing the input it will look like this

Hope It Helps !