#include <iostream> //#define DEBUG using namespace std; int main() { int a = 20; #ifdef DEBUG printf("[DBG] a= %d\\n", a); #endif cout << "Hello, World !!"; }