public class EmployeeMain {
  public static void main(String []args) {
    Employee homer = new Employee();

    System.out.println(homer.getHours());
    System.out.println(homer.getSalary());
    System.out.println(homer.getVacationDays());
    System.out.println(homer.getVacationForm());

    Secretary pam = new Secretary();
    pam.takeDictation("Dunder Mifflin, this is Pam.");

    System.out.println(pam.getHours());
    System.out.println(pam.getSalary());
    System.out.println(pam.getVacationDays());
    System.out.println(pam.getVacationForm());

    Marketer mark = new Marketer();
    System.out.println(mark.getHours());
    System.out.println(mark.getSalary());
    System.out.println(mark.getVacationDays());
    System.out.println(mark.getVacationForm());
    // mark.takeDictation("Nobody dictates to me. I'm a business major");
    // homer.takeDictation("What's dictation?");
  }
}
