CJCoding With Joseph

Concatenate Two Words

Read two words from input and print them joined together with no space between them. For example, if the input is:

foo bar

print:

foobar

Use the + operator to join the strings.

Expected Output:

foobar
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
foo bar
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.