// A class to represent Secretary
public class Secretary extends Employee {
  public void takeDictation(String s) {
    System.out.println("Taking dictation: " + s);
  }
}
