/*
 * (c)2002 by Daniel Mettler <mettlerd[AT]REMOVEnumlock.ch>
 *
 * Released under the terms and conditions of the GNU GPL v2 (http://www.gnu.org/copyleft/gpl.html)
 *
 */

class LoopJava {
	
	public static void main (String args[]) {
		
		int noOfLoops = 100000;
		
		long millis1 = java.lang.System.currentTimeMillis();
		
		for (int x = 0; x < noOfLoops; x++) {
			System.out.println("Hello World!");
		}

		long millis2 = java.lang.System.currentTimeMillis();
		System.out.println("The number of ms for " + noOfLoops + " loops: " + (millis2 - millis1));
		
	}
	
}

