public class Tester1 {
	public static void main(String argv[]) {
		MyMathClass temp = new MyMathClass();
		try {
			System.out.println(temp.divide(5,0));
		} catch (DivideByZeroException d) {
			System.out.println(d);
		}
	}
}
