6 lines
59 B
Text
6 lines
59 B
Text
i = 1024
|
|
while i > 0
|
|
print i
|
|
i = int(i / 2)
|
|
wend
|
|
end
|