/*
 * Description: Prints "Hello World" to the console
* Programmed by: Put your names(s) here
* Date: 1/27/09
*
*/

class Hello{

  public static void main(String[] args){

    System.out.println("Hello World");
    
  }// end of main
  
}
