Python 3.12.3 (tags/v3.12.3:f6650f9, Apr 9 2024, 14:05:25) [MSC v.
1938 64 bit
(AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> sum = 1 #240069159
>>> for count in range(1,10):
... sum = sum + (count + 1)
... sum
...
...
3
6
10
15
21
28
36
45
55