#ifndef S0038_COUNT_AND_SAY_HPP #define S0038_COUNT_AND_SAY_HPP #include #include using namespace std; class Solution { public: string countAndSay(int n); }; #endif