def processa_text(iter_text1, iter_text2):
    it = zip(iter_text1, iter_text2)
    it2 = filter(lambda t: t[0] != t[1], it)
    it4 = map(lambda x: abs(len(x[0])-len(x[1])), it2)
    return it4
             
