//
// This sample for practice jdb (Java native debugger) purpose.
// The jdb requires the source to be compiled with -g option
// ex: "javac -g HelloWorldi.java"
// then use: "jdb HelloWorldi" to debug code
//
import java.lang.* ;
public class HelloWorldi {
	public static void main (String[] args) {
		int counter;
		for (counter=0; counter < 10; counter++)
		System.out.println("Hello World!! " + counter);
	}
}