mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 17:16:39 +02:00
7 lines
61 B
Python
7 lines
61 B
Python
i = 0
|
|
s = 0
|
|
while i < 200000:
|
|
i += 1
|
|
s += i
|
|
print(s)
|