Main.cpp: In function 'void solve()':
Main.cpp:20:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | for(int i = 0; i < s.length(); ++i){
| ~~^~~~~~~~~~~~
Main.cpp:21:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | if(i + 2 < s.length()) if(s[i] == 'm' && s[i + 1] == 'i' && s[i + 2] == 'n') a++;
| ~~~~~~^~~~~~~~~~~~
Main.cpp:22:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | if(i + 2 < s.length()) if(s[i] == 'm' && s[i + 1] == 'a' && s[i + 2] == 'x') b++;
| ~~~~~~^~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:34:16: warning: unused variable 'aa' [-Wunused-variable]
34 | int T = 1, aa;
| ^~