Example code: ``` #define A(val) DEBRACKET val #define DEBRACKET(val) val A((2)) ``` `gcc -E` output: ``` 2 ``` simplecpp output: ``` DEBRACKET ( 2 ) ```