python/somme.py
2022-12-28 09:00:47 +01:00

8 lines
98 B
Python

somme = 0
total = 0
while somme != -1:
total = total + somme
somme = int(input())
print(total)