//Output2 - shows the use of print public class Output2 { public static void main(String[] args) { System.out.print("Here I am printing on the first line..."); System.out.println("and I am still on the first line!"); } }