//Output1 - shows the use of println public class Output1 { public static void main(String[] args) { System.out.println("Here I am printing on the first line..."); System.out.println("...Now, I'm on the second line"); } }