In this project, you’re going to create a Java application called project1.java in which the user will be pass in multiple integers separated by spaces at the command line followed by an operator of either + or -. When the program runs, you will loop through the strings, convert them to ints using parselnt(String) and based on which operator is passed as the final parameter perform that operation for all of the numbers adding them to a result int. You will display the numbers separated by the operators with an equal sign and the result. In other words: If the user enters this… Entered: 1 4 12 22 4 + 194 34 12 13 4 – 0 23 12 45 – 164 19 145 95 + they will get this….. Printed to the Screen: 1 + 4 + 12 + 22 + 4 = 43 194 – 34 – 12 – 13 – 4 = 131 0 – 23 – 12 – 45 = -80 164 + 19 + 145 + 95 = 423