class Product { public: Product(); void read(); bool is_better_than(Product b) const; void print() const; private: string name; double price; int score; };