// A class to represent secretaries (2-page manual). public class Secretary extends Employee { public void takeDictation(String text) { System.out.println("Taking dictation: " + text); } }