#ifndef MBUOY_PORT_HPP #define MBUOY_PORT_HPP #include 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