Write a program Adder2.java
that has a main()
method that has the user enter two int
values. The program should then send those two values to a add()
method which returns the sum of those two values so that the result can be printed out by the main()
program.