#include <stdio.h> #define print printf("%d\n", n++); #define times2(x) x x #define times5(x) x x x x x #define pow3(x,f) x(x(x(f))) int main() { int n = 1; pow3(times2, pow3(times5, print)); return 0; }