CJCoding With Joseph

Concatenate Two Words

Read two words from standard input using sc.next() twice and print them on one line separated by a single space. For example, if the input is Hello then World, print:

Hello World

Join the words with + " " +.

Expected Output:

Hello World
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
Hello\nWorld\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.