mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
9 lines
110 B
Python
9 lines
110 B
Python
j = 0
|
|
while j < 1000:
|
|
total = 0
|
|
i = 0
|
|
while i < 100:
|
|
total += i
|
|
i += 1
|
|
j += 1
|