#include <stdio.h>
#define FIVE_TIMES(x) 5 * x

int main() {
  printf("%d\n", FIVE_TIMES(2 + 3));  // => 13
}