10 0
ArithmeticException
static int safeDivide(int a,int b){if(b==0) throw new ArithmeticException();return a/b;}
static int safeDivide(int a,int b){if(b==0) throw new ArithmeticException();return a/b;}