mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
9 lines
No EOL
80 B
Text
9 lines
No EOL
80 B
Text
n := read ();
|
|
f := 1;
|
|
|
|
for skip, n >= 1, n := n-1
|
|
do
|
|
f := f * n
|
|
od;
|
|
|
|
write (f) |