// An instance of VIP contains a VIP's data
public class VIP extends Employee {
    private double bonus;  // The VIP's bonus
    
    // Constructor: name n, pay s, year d hired, and bonus b
    public VIP(String n, double s, int d, double b)
    {super(n, s, d); bonus= b; }
    
    // = a String containing the data for the person
    public String toString() 
    {return "VIP "  + super.toString() +  ", "  + "+ bonus of " + bonus;}
    
    // = pay for this VIP
    public double getPay() {
        return super.getPay() + bonus;
    }
    
    // Change the bonus to b
    public void changeBonus(double b)  {bonus= b;}
}