python-CSD-kursu/python-temel/1-100.py

7 lines
71 B
Python
Raw Normal View History

2023-05-20 07:58:06 +03:00
i = 1
total = 0
while i <= 100:
total += i
i += 1
print(total)