Create a new class named Calculator using <
Calculator
Add the following two methods to the class:
public Integer add(Integer x, Integer y) { return x + y; } public Integer multiply(Integer x, Integer y) { return x * y; }