mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-07 23:38:47 +00:00
10 lines
87 B
Text
10 lines
87 B
Text
|
|
var n, f = 1;
|
||
|
|
|
||
|
|
n := read ();
|
||
|
|
|
||
|
|
for skip, n >= 1, n := n-1
|
||
|
|
do
|
||
|
|
f := f * n
|
||
|
|
od;
|
||
|
|
|
||
|
|
write (f)
|