void print(const std::string &s) { for (std::string::size_type i = 0; i < s.size(); i++) { std::cout << s[i] << ' '; } }