Hi, I tried, 1> a=(a+1000); System.out.println("Your salary is: (a) dollars per month."); 2> System.out.println("Your salary is: (a+1000) dollars per month."); 3> a=(a+1000); System.out.println("Your salary is:" +a+ "dollars per month."); it is incorrect, so how should I ... increase the input parameter by 1000 and also output the same text to the screen ?