public class exceptionHandling { public static void main(String str[]) { int a = 3; int b = 0; b = a/b; System.out.println(b); } }