public class Reduced3 {
    static int iFld;

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

    static void test(int x, boolean b) {
        int iArr[][] = new int[5][20];
        for (int f = 50; f >= 0; f--) {
            for (int j = 2; j > x; j--) {
                if (b) {
                    break;
                }
                iFld *= 5;
                iArr[j][f] *= 3;
            }
        }
        System.nanoTime();
    }
}
