System.out.println is a statement to print its argument and create a newline afterwards.
System.out.println
Hint: In eclipse IDE, the keyboard shortcut for System.out.println("") is write sout and hit ctrl+space. sysout is also works.
Example:
System.out.println("Hello"); System.out.println("Vitademy");
Console Output:
Hello Vitademy