Manager::Manager(string n, double s, double b) : Employee(n, s), bonus(b) {} double Manager::annual_income() const { return get_salary() + bonus; }