8 lines
85 B
Text
8 lines
85 B
Text
var i = integer
|
|
i = 1024
|
|
while i > 0 do
|
|
begin
|
|
print i;
|
|
i = i / 2
|
|
end
|
|
end
|