#include<stdio.h> void main(){ int num, i, mul; num = 5; mul = 1; for(i = 1; i <= 5; i++){ mul = mul * i; } printf("%d",mul); }