
import itertools

def comptar_enrere(it):
    it2 = map(lambda n:range(n, 0, -1), it)
    it3 = itertools.chain.from_iterable(it2)
    return it3
