1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef MBUOY_PORT_HPP #define MBUOY_PORT_HPP #include <cstdio> namespace mbuoy { namespace port { inline void puts(int x, int y, const char *s) { std::printf("[%d, %d]: %s\n", x, y, s); } } // namespace port } // namespace mbuoy #endif // MBUOY_PORT_HPP