#include <stdio.h>


int main(int ac, char *av[])
{
  (void)ac;
  (void)av;

  printf("Program of the project1\n");

  return 0;
} // main
