Make a class EMPLOYEE with a name and salary. Make a class MANAGER inherit from EMPLOYEE. Add an instance field, named DEPARTMENT, of type STRING. Supply a method toSTRING that prints the manager's name, department, and salary. Make a class EXECUTIVE inherit from MANAGER. Supply appropriate toSTRING methods for all classes. Supply a test program that tests these classes and methods.