/* This  is the very essential first program, also known as the lame "Hello World"
 *normally seen in many beginner's program
 */
 public class Welcome 
 {
 	//this is the start of the main method
 	public static void main ( String args[] )
 	{
 	
 		System.out.println ( "Hello World and Welcome!" );
 	
 	} //end the main method	
 	
 } // end the class