def Polya(N): liste = [0,1] for n in range(N): liste.append(choice(liste)) return sum(liste)