6 lines
58 B
Plaintext
6 lines
58 B
Plaintext
|
var x = 1000000;
|
||
|
while x > 0 {
|
||
|
x = x - 1;
|
||
|
}
|
||
|
print(x);
|