selling_rna.cpp: In function 'bool pre(long long int, long long int, long long int)':
selling_rna.cpp:17:19: 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]
17 | if (s[a].size() < len) return 0;
| ~~~~~~~~~~~~^~~~~
selling_rna.cpp: In function 'bool suf(long long int, long long int, long long int)':
selling_rna.cpp:22:19: 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]
22 | if (s[a].size() < len) return 0;
| ~~~~~~~~~~~~^~~~~
selling_rna.cpp: In function 'int main()':
selling_rna.cpp:34: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]
34 | for (int j = 0; j < s[i].size(); j++) {
| ~~^~~~~~~~~~~~~
selling_rna.cpp:48: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]
48 | for (int j = 0; j < p.size(); j++)
| ~~^~~~~~~~~~