public class TwoLines { public static void main( String args[] ) {// start of execution System.out.println( "Hello there! " ); // First line System.out.println( "How are you?" ); // Second line } // end of execution }