Main.cpp: In function 'int main()':
Main.cpp:27:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<std::vector<std::pair<std::vector<std::__cxx11::basic_string<char> >, std::__cxx11::basic_string<char> > >, std::__cxx11::basic_string<char> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int i=0; i<book.size(); i++){
| ~^~~~~~~~~~~~
Main.cpp:29:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<std::vector<std::__cxx11::basic_string<char> >, std::__cxx11::basic_string<char> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for(int j=0; j<book[i].first.size(); j++){
| ~^~~~~~~~~~~~~~~~~~~~~
Main.cpp:31:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::__cxx11::basic_string<char> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for(int k=0; k<book[i].first[j].first.size(); k++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~