12 lines
No EOL
158 B
C++
12 lines
No EOL
158 B
C++
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
#define DEBUG_MODE
|
|
|
|
#ifdef DEBUG_MODE
|
|
#define print(x) std::cout << x << std::endl;
|
|
#else
|
|
#define print(x)
|
|
#endif |