mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
27 lines
No EOL
246 B
Text
27 lines
No EOL
246 B
Text
read (n);
|
|
|
|
while n > 0 do
|
|
|
|
if n < 1000
|
|
then
|
|
if n < 500
|
|
then
|
|
if n < 250
|
|
then
|
|
if n < 125
|
|
then
|
|
if n < 63
|
|
then
|
|
if n < 32
|
|
then
|
|
write (1)
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
fi;
|
|
|
|
n := n - 1
|
|
|
|
od |