public class HelloWorld1 { public static void main( String args[] ){ // starts the execution System.out.print("Hello " ); // prints to screen System.out.println("World!" ); // prints to screen } // end of execution }