combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:54: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]
54 | if(ch==ans.size()) ans+="X";
| ~~^~~~~~~~~~~~
combo.cpp:55: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]
55 | else if(ch==ans.size()+1) ans+="A";
| ~~^~~~~~~~~~~~~~
combo.cpp:63: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]
63 | if(ch==ans.size()) ans+="Y";
| ~~^~~~~~~~~~~~
combo.cpp:64: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]
64 | else if(ch==ans.size()+1) ans+="A";
| ~~^~~~~~~~~~~~~~
combo.cpp:72: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]
72 | if(ch==ans.size()) ans+="X";
| ~~^~~~~~~~~~~~
combo.cpp:73: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]
73 | else if(ch==ans.size()+1) ans+="A";
| ~~^~~~~~~~~~~~~~
combo.cpp:81: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]
81 | if(ch==ans.size()) ans+="X";
| ~~^~~~~~~~~~~~
combo.cpp:82: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]
82 | 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;
| ^