Write a program called SumSquares that includes an integer return type method called Squares().
The method accepts two integer parameters (num1 and num2) and calculates the sum of these two
squares (num12 + num22
). The main method includes the method call, passing the following values
(2, 3) to the Squares() method and the output displaying the sum of the squares in the command line
window.