#include
<stdio.h>
void
main
()
{
int
j
=
1
;
for
(
int
i
=
1
;
i
<
6
;
j
=
j
*
i
,
i
++
);
printf
(
"1*2*3*4*5=%d"
,
j
);
}