public class Reduced {
    static int iArr[] = new int[100];

    public static void main(String[] strArr) {
        for (int i = 0; i < 10000; i++) {
            test();
        }
    }

    static void test() {
        int i1 = 0;

        for (int i4 : iArr) {
            i4 = i1;
            try {
                iArr[0] = 34 / i4;  // Also reproduces with %
                i4 = iArr[30 / i4]; // Also reproduces with %
            } catch (ArithmeticException a_e) {
            }
        }
    }
}
