v , s = 10 , 10
for n in range(20):
    v = v * 0.5
    print(v)
    s = s + v
print("Somme = ",s)
