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