#include <stdio.h>

#include "config.h"


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

  printf("Program of the project7 (version %s)\n", SIMPLE_VERSION);

  return 0;
} // main
