combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:72:7: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | if(ANS==answer.size())
| ~~~^~~~~~~~~~~~~~~
combo.cpp:74:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | else if(ANS==answer.size()+1)
| ~~~^~~~~~~~~~~~~~~~~
combo.cpp:80:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
80 | if(press(answer+lolz[0])==answer.size()+1)
| ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
combo.cpp:82:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
82 | else if(press(answer+lolz[1])==answer.size()+1)
| ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
combo.cpp:48:6: warning: unused variable 'counter' [-Wunused-variable]
48 | bool counter=0;
| ^~~~~~~