#include #include #include #include "defs.h" template std::ostream& operator<<(std::ostream& os, const std::vector& x) noexcept { for (auto&& i : x) os << i << ", "; return os; } int main() { std::cout << LC230506CN::minNumberOfFrogs("crcoakroak"); return 0; }