mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
16 lines
223 B
Text
16 lines
223 B
Text
|
|
read (n);
|
||
|
|
|
||
|
|
repeat
|
||
|
|
|
||
|
|
if n == 1 then write (0)
|
||
|
|
elif n == 2 then write (1)
|
||
|
|
elif n == 3 then write (2)
|
||
|
|
elif n == 4 then write (3)
|
||
|
|
else write (10)
|
||
|
|
fi;
|
||
|
|
|
||
|
|
if n >= 5 then write (11) fi;
|
||
|
|
|
||
|
|
n := n - 1
|
||
|
|
|
||
|
|
until n == 0
|