Main.cpp: In function 'std::string solve(std::string&)':
Main.cpp:22:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(int i = 0;i < s.size();i++){
| ~~^~~~~~~~~~
Main.cpp:29:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for(int i = 0;i < s.size();i++){
| ~~^~~~~~~~~~
Main.cpp:51:9: error: expected ';' before 'if'
51 | s = s2
| ^
| ;
52 | if(query(s)){
| ~~
Main.cpp: In function 'int main()':
Main.cpp:67:7: warning: unused variable 'tam' [-Wunused-variable]
67 | int tam = 1;
| ^~~