struct Coordinate{ int x, y; constexpr bool operator<(const Coordinate & rhs) const { return x < rhs.x && y < rhs.y; } };