#define DEBUG
int main(){
    #ifdef DEBUG
	    cout << "Hello world!" << endl;
    #endif
    return 0;
 
}