password.cpp: In function 'std::string guess(long long int, long long int)':
password.cpp:19:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for(int i=0; (i<=res.length()) && (res.length()<n); i++){
| ~^~~~~~~~~~~~~~
password.cpp:19:52: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
19 | for(int i=0; (i<=res.length()) && (res.length()<n); i++){
| ~~~~~~~~~~~~^~
password.cpp:24:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int j=i; j<res.length(); j++){
| ~^~~~~~~~~~~~~
password.cpp:36:20: error: 'query' was not declared in this scope
36 | int ln=query(s1+st+s2);
| ^~~~~