#include #include #include auto main() -> int { using namespace book_store; using namespace book_store::library; constexpr std::size_t LIBRARY_BOOK_SIZE = 1000; constexpr std::size_t LIBRARY_CUSTOMER_SIZE = 500; constexpr std::size_t YEARLY_MEMBERSHIP_FEE_USD = 10; constexpr std::size_t MEMBER_DISCOUNT_PERCENT = 5; book_store::store store(LIBRARY_BOOK_SIZE, LIBRARY_CUSTOMER_SIZE, YEARLY_MEMBERSHIP_FEE_USD, MEMBER_DISCOUNT_PERCENT); populate_books(store, LIBRARY_BOOK_SIZE); populate_consumers(store); manage(store); return 0; }