password.cpp: In function 'std::string solve(int, int)':
password.cpp:13:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | if(query(s)!=s.size())
| ~~~~~~~~^~~~~~~~~~
password.cpp:25:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for(int i=0;i<=s1.size();i++)
| ~^~~~~~~~~~~
password.cpp:27:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | if(j<s2.size())
| ~^~~~~~~~~~
password.cpp:31:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | if(query(tmp)==tmp.size())
| ~~~~~~~~~~^~~~~~~~~~~~
password.cpp:38:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | while(j<s2.size())s1+=s2[j++];
| ~^~~~~~~~~~
password.cpp:40:18: error: 'n' was not declared in this scope
40 | if(s1.size()>n)assert(false);
| ^