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