ancient2.cpp: In function 'std::string Solve(int)':
ancient2.cpp:27:3: error: 'string' was not declared in this scope
27 | string s(N, '0');
| ^~~~~~
ancient2.cpp:27:3: note: suggested alternatives:
In file included from /usr/include/c++/13/string:41,
from ancient2.h:1,
from ancient2.cpp:1:
/usr/include/c++/13/bits/stringfwd.h:77:33: note: 'std::string'
77 | typedef basic_string<char> string;
| ^~~~~~
/usr/include/c++/13/string:66:11: note: 'std::pmr::string'
66 | using string = basic_string<char>;
| ^~~~~~
ancient2.cpp:39:10: error: 's' was not declared in this scope
39 | return s;
| ^