debugging.h 373 B

1234567891011
  1. #include <iostream>
  2. //#define ASSERT(x) do { std::cout << x << std::endl; } while (0); char asd; std::cin >> (asd); std::cin.ignore(2000, '\n')// exit(-1)
  3. #define ASSERT(x)
  4. //#define DEBUG(x) do { std::cerr << x; } while (0)
  5. //#define DEBUG(x) do { std::cout << x << std::endl; } while (0)
  6. #define DEBUG(x)
  7. #define INFO(x) do { std::cout << x << std::endl; } while (0)