void Product::print() const
{
cout << name
<< " Price: " << price
<< " Score: " << score << "\n";
}
best.print();
bool Product::is_better_than(Product b) const
{
if (b.price == 0) return false;
if (price == 0) return true;
return score / price > b.score / b.price;
}