python-CSD-kursu/1-100.py
2023-05-20 07:58:06 +03:00

6 lines
71 B
Python

i = 1
total = 0
while i <= 100:
total += i
i += 1
print(total)