#include <stdio.h> #define SIX 1 + 5 #define NINE 8 + 1 int main(void) { printf( "What do you get if you multiply %d by %d? %d\n", SIX, NINE, SIX * NINE); return 0; }