public class Test {

    public static int[] a = new int[100_000];

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

    public static void test() {
	for (int i = 0; i < a.length; i++) {
	    a[i]++;
	}
    }
}
