// School of Computer Engineering
// K.N. Toosi University of Technology

//#include <stdio.h>

extern int printf (const char *__restrict __format, ...);

int fact(int);

int main() {

  printf("Salaaaaam!!!\n");
  
  return  0;
}