class Printing {
	public static void main(String [] args){
		// Execution begins here...

		System.out.println("Print this and then end the line.");

		// System.out.print does not end the line.
		System.out.print("Print all ");
		System.out.println(" of this");
		System.out.print(" on two");
		System.out.println(" lines.");
	}
}
