forked from Rust-related/RustPython
12 lines
131 B
Python
12 lines
131 B
Python
j = 0
|
|
while j < 1000:
|
|
|
|
total = 0
|
|
i = 0
|
|
while i < 100:
|
|
total += i
|
|
i += 1
|
|
# print(total)
|
|
|
|
j += 1
|