#include <stdio.h>

#define VIER 2 + 2

int main (void)
{
  printf ("Drei mal vier = %d.\n", 3 * VIER);
  return 0;
}