#define LOG(x,y)
#define MY_LOG_MESSAGE 1,2

#define LOG1(x) LOG(x)

int main() {
    LOG1(MY_LOG_MESSAGE);
}
