combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:53:11: 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]
53 | if(ch==ans.size()) ans+="X";
| ~~^~~~~~~~~~~~
combo.cpp:54:16: 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]
54 | else if(ch==ans.size()+1) ans+="A";
| ~~^~~~~~~~~~~~~~
combo.cpp:62:11: 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]
62 | if(ch==ans.size()) ans+="Y";
| ~~^~~~~~~~~~~~
combo.cpp:63:16: 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]
63 | else if(ch==ans.size()+1) ans+="A";
| ~~^~~~~~~~~~~~~~
combo.cpp:71:11: 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]
71 | if(ch==ans.size()) ans+="X";
| ~~^~~~~~~~~~~~
combo.cpp:72:16: 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]
72 | else if(ch==ans.size()+1) ans+="A";
| ~~^~~~~~~~~~~~~~
combo.cpp:80:11: 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]
80 | if(ch==ans.size()) ans+="X";
| ~~^~~~~~~~~~~~
combo.cpp:81:16: 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]
81 | else if(ch==ans.size()+1) ans+="Y";
| ~~^~~~~~~~~~~~~~
combo.cpp:25:28: warning: variable 'y' set but not used [-Wunused-but-set-variable]
25 | bool a=true,b=true,x=true,y=true;
| ^