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