_>>>#define SUM(a,b) a+b
#include <iostream> #define SUM(a,b) a+b int main() { std::cout << SUM(1<<1, 1) << std::endl; }