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