lama_byterun/regression/test021.expr
2019-09-19 18:37:08 +03:00

11 lines
No EOL
94 B
Text

global n, f;
n := read ();
f := 1;
for skip, n >= 1, n := n-1
do
f := f * n
od;
write (f)