#include using namespace std; class Solution { public: static bool DEBUG; template void dbg(Args &&...args) { if (DEBUG) { const char *sep = " "; const char *label = "[DEBUG]"; cout << label; (((cout << sep << args), sep = sep), ...); cout << endl; } } bool test(, bool answer); };