public class Test {
    static int[] iArr = new int[100];
    static int[] iArr2 = new int[100];
    static int iFld, iFld2, iFld3;
    static int x, y, z;
    static short sFld;
    static long lFld;
    static float fFld;
    static boolean flag, flag2, flag3;

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

    static void test() {
        int i = 1;
        do {
            for (int j = 103; j > 1; --j) {
                iArr[i] = iArr[j / 34];
            }
            for (int j = 103; j > 4; j -= 3) {
                switch (i % 9) {
                    case 0:
                    case 2:
                    case 3:
                        iArr[i - 1] = 34;
                    case 8:
                }
            }
        } while (++i < 99);
    }

    static void dontInline() {}
}
