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

7 lines
80 B
Python
Raw Normal View History

2023-05-21 20:26:19 +03:00
i = 1
total = 0
while i<= 100:
total = total + i
i = i + 1
print(total)