import java.io.*; public class CompanyMain { /** * Finds and prints out the best-paid full-time employee in the input. * */ public static void main (String[ ] args) throws IOException // see Section 2.2 { Company company = new Company(); company.findBestPaid(); company.printBestPaid(); } // method main } // class CompanyMain