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