public class Test {
    public static int zero = 0;

    public static void main(String[] args) {
        byte[] a = new byte[100];
        for(int i = 0; i < 10_000; i++) {
            test(a);
	}
    }

    public static void test(byte[] a) {
        a[zero + 0] = 0;
        a[zero + 1] = 0;
        a[zero + 2] = 0;
        a[zero + 3] = 0;
        a[zero + 4] = 0;
        a[zero + 5] = 0;
        a[zero + 6] = 0;
        a[zero + 7] = 0;
    }
}
