package test;
public class Test_ArithmeticException{
public static void main(String[] args) {
try{
int b=0;
int a=33/b;
}
catch(ArithmeticException e){
e.printStackTrace();
}
System.out.println("Hello!");
}
}