def revela(text):
    llista = text.split()
    for i in range(1, len(llista), 2):
        codi = llista[i - 1][:2] + llista[i][:2]
        yield codi
    if len(llista) % 2 == 1:
        yield llista[-1][:2] * 2
