Write a program in java that requests 2 numbers from the user and then passes these 2 numbers to a method findMax that displays the largest number. Make sure your method is called fron main(). Test the method by passing various data to it.
PART B: Store each class (one for main and a different one for findMax) in seprate files and then compile each class. you will need to change the call to findMax to include its class name. Execute the class that contains main