5 lines
49 B
Plaintext
5 lines
49 B
Plaintext
|
|
x = 0
|
||
|
|
while x < 100000000:
|
||
|
|
x = x + 1
|
||
|
|
print x
|