



/** ------------------------------------------------------------------------------------------------------------------
 * start of Example00 class
 * ------------------------------------------------------------------------------------------------------------------  **/
public class Example00 {


	/*  start of main method  */
	public static void main(String[] args){
		
		
		
		
		//  PUT YOUR CODE BELOW THIS LINE
		System.out.println("Hello");
		
		
		for(int i=1; i>0; i++){
			
			System.out.println("Hello World!");
			
			
//			System.out.println("counter = " + counter);
			
		}
		
		//  PUT YOUR CODE ABOVE THIS LINE
		
		
		
	}/*  end of main method  */
	
	
}/*  end of Example00 class  */