// purpose: demonstrate concatenation and whitespace public class PrintTwoWords { // method main(): program starting point public static void main( String[] args ) { System.out.println( "bookkeeper" + " " + "hotshots" ); } }