
def iter_serps(t):
    for i in range(t.ncaselles):
        if t[i] != 0  and i > t[i]:
            yield (i, t[i])

            
