#pragma once #include #define DEBUG_MODE #ifdef DEBUG_MODE #define print(x) std::cout << x << std::endl; #else #define print(x) #endif