sum-of-even-nums.py 75 B

12345
  1. total = 0
  2. for number in range(2, 101, 2):
  3. total += number
  4. print(total)