Spot It!

Have you played the game Spot it!? Though there are many ways to play this game, the basic rule is t…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

n = int(input())
userInput = []
for i in range(n):
    userInput.append(int(input()))

for i in userInput:
    print(i + 1)

wrong answer on test 2. any hint? please.