def echange(tab, m, n):
    temp = tab[m]
    tab[m] = tab[n]
    tab[n] = temp