boolean res;
REUSED.printStackTrace();;
int REPEAT = (args.length == 0) ? 500000 : Integer.parseInt(args[0]);
long time = System.currentTimeMillis();
for (int j = REPEAT; j > 0 ; j--)
res = test1();
time = System.currentTimeMillis() - time;
System.out.println("test1() took " + time);
time = System.currentTimeMillis();
for (int j = REPEAT; j > 0 ; j--)
res = test2();
time = System.currentTimeMillis() - time;
System.out.println("test2() took " + time);
REUSED.printStackTrace();;