lama_byterun/regression/test016.lama

14 lines
96 B
Text
Raw Permalink Normal View History

var s, n;
2018-04-25 01:06:18 +03:00
n := read ();
2018-03-20 23:13:51 +03:00
s := 1;
do
2018-03-20 23:13:51 +03:00
s := s * n;
n := n - 1
while n != 0 od;
2018-03-20 23:13:51 +03:00
write (s)