def mes_entrenament(llista, llindar):
    for a in llista:
        if a.temps_max() < llindar:
            return str(a)
    return ''
