public class MathWrapper { public MathWrapper() { } //create the following methods //subtract //divide --> be careful about zero in the denominator //getRemainder --> be careful about zero in the denominator //printEvenNumbers(int upTo)--> preint all even numbers between 0 and the paramater //isPrime(int inPut) --> returns boolean true or false based on whether or not input is prime public int add(int x, int y){ return x + y; } }