#include struct Book_Type { std::string title; std::string author; int pages{100}; }; bool operator<(Book_Type const & left, Book_Type const & right); void print(Book_Type const & book);