#include <stdio.h>

int main()
{
 int i=0;
 i++;
 if(i<=5)
{
  printf("c adds wings to your thoughts\n");
  exit(0);
  main();
}
return 0;
}