mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 00:56:31 +02:00
8 lines
116 B
Python
8 lines
116 B
Python
numbers = []
|
|
for i in range(30000):
|
|
numbers.append(i)
|
|
s = 0
|
|
for i in range(30000):
|
|
s += numbers[i]
|
|
print(s)
|