Help me in solving ST08 problem

My issue

what is contiguous string

My code

# Update the code below to solve the problem

t = int(input())
for i in range(t):
    S = input()
    

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

@srikanthb4
contiguous string means taking substring of the string without any break.
like abcdef
bc , bcd , cdef etc are contiguous.