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

7 lines
80 B
Python

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