numeri = [13, 21, 6, 44, 5, 79, 83, 66, 56] n = len(numeri) if n < 2: print("errore") else: max = numeri[0] viceMax = numeri[1] if viceMax > max: max, viceMax = viceMax, max # COMPLETARE print(max, viceMax)