/******************************************************************
 * Program 0: Hello World 
 * 
 * Programmer: 
 *
 * Due Date: June 24, 2005
 * 
 * Class: COMP 14         Instructor: Adrian Ilie
 *        
 * Pledge: I have neither given nor received unauthorized aid
 * on this program.     (signature on file)
 *
 * Description: This program prints out a greeting to the world.
 *
 * Input: None
 *
 * Output: A friendly greeting
 *
 ******************************************************************/

public class HelloWorld
{
	public static void main(String[] args) 
	{
	    System.out.println ("Hello Cruel World!");
	}
}
