✅ 목표 (Goal)

🥕 당근이의 한마디

✅ 목차 (Index)

✅ 내용 (Contents)

#include <iostream>
//#define DEBUG
using namespace std;

int main() {
    int a = 20;
#ifdef DEBUG
    printf("[DBG] a= %d\\n", a);
#endif
    cout << "Hello, World !!";
}