See More

public class HelloWorld { public static void main(String[] args) { String h = "Hello,"; String w = "World!"; System.out.println(h + " " + w); } }