public class MyPeople { public static void main(String args[]) { Customer first = new Customer(); Customer second = new Customer(); Employee third = new Employee(); first.setName("Marge", 'P', "Gunderson", "Officer"); second.setName("Jerry", 'J', "Lundegaard", "Sales Director"); third.setName("Carl", 'P', "Showalter"); third.setSSN(293992345); first.print(); second.print(); third.print(); } }