#define A(X) B(X) + B(X) #define B(X) C(X) + C(X) + C(X) + C(X) #define C(X) A(X) + A(X) + A(X) + A(X) + A(X) int main() { return 0; }