// CSE 374 17wi lecture 8
// Simple uses of preprocessor
// (compile with gcc -E to see how the preprocessor rewrites the
// original program)

#include <stdio.h>

#define MAGIC 17

int main() {
  printf("hello\nthe magic number is %d\n", MAGIC);
  return 0;
}