import cs1.Keyboard;

public class MyMath_use
{
	public static void main (String[]args)
	{
		int x, y;

		System.out.print("Enter 1st number: \t");
		x = Keyboard.readInt();
		System.out.print("Enter 2nd number: \t");
		y = Keyboard.readInt();


		MyMath fred = new MyMath(x, y);

		System.out.println(x+ " + " +y+ " = " + fred.add());
		System.out.println(x+ " * " +y+ " = " + fred.multiply());

		System.out.println("\n\n\n\n\n");
	}
}


