def indexs_paraules_parells(it):
    ite = enumerate(it)
    itf = filter(lambda x: len(x[1])%2==0, ite)
    return map(lambda x: x[0], itf)
