I need HELP ASAP with this week 3 assignment! I need it to follow STRICK RULES AS POSTED. I included the WEEK 2 attachments to go off of. ((IMPORTANT MUST GO BY DETAILED INSTRUCTION AND SENT TO ME IN A ZIP FILE SO I CAN SUBMIT IT)))

profilemosthated01
mainclass.java

package project_java; import java.util.Scanner; public class MainClass { public static void main(String[] args) { Scanner scan=new Scanner(System.in); int annualSales; //Asks user to enter annual sales System.out.println("Enter the annual Sales done by a Sales person"); annualSales=scan.nextInt(); //Passes the data to the constructor Salesman sales=new Salesman(annualSales); //Prints the annual compensation System.out.println("Total Annual Compensation: "+sales.getAnnualCompensation()); } }