Integer test = 123; String str = ":)"; System.out.println("Hello" + " " + "World!" + str + " " + test); // Output: // $> Hello World!:) 123