class Reduced1 {
    static final int N = 400;

    static void allocateArrays() {
        for (int i = 0; 200_000 > i; ++i) {
            int[] a = new int[N];
        }
    }

    static int[] test() {
        int a[] = new int[N];
        allocateArrays();
        for (int k = 0; k < 500; k++) {
            for (int i = 1; i < 69; i++) {
                a[i] =  14;
                a[4] -= 14;
            }
        }
        return a;
    }

    public static void main(String[] args) {
        int[] gold = test();
        for (int r = 0; r < 10; r++) {
            int[] a = test();
            System.out.println("a[4]: " + a[4]);
            if (a[4] != gold[4]) {
                throw new RuntimeException("wrong value " + gold[4] + " " + a[4]);
            }
        }
    }
}
