/*******************************************************************
 *                                                                 *
 *  This is DEEP THOUGHT's algoritm to compute the answer for      *
 *  "The Ultimate Question of Life, the Universe and Everything"!  *
 *                                                                 *
 *******************************************************************/

#include <stdio.h>

#define SIX  1 + 5
#define NINE 8 + 1

int main()
{
  printf("Computing \"The Ultimate Question of Life, the Universe and Everything\"...\n");
  printf("The answer is %d!\n", SIX * NINE);
  return(0);
}
