Discuss the below in detail:
Create an application named Numbers whose main () method holds two interger variables. Assign values to the variables. Pass both variables to methods named sm () and difference (). Create the methods sum () and diffference (); they compute the sum of and difference between the values of two arguments, respectively. Each method should perform the appropriate computation and display the results. Save the application as Number.java
Add a method named product () to the Numbers class. The product () method should compute the multiplication product of two integers, but not display the answer. Instead, it should return the answer to the calling method, which displays the answer. Save as Numbers2.java