#include <iostream>

int main(int argc, char *argv[])
{
        #define a 2
        std::cout << a << std::endl;

        return 0;
}