mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
14 lines
No EOL
101 B
Text
14 lines
No EOL
101 B
Text
local s, n;
|
|
|
|
n := read ();
|
|
|
|
s := 1;
|
|
|
|
repeat
|
|
|
|
s := s * n;
|
|
n := n - 1
|
|
|
|
until (n == 0);
|
|
|
|
write (s) |