SDE Path

Concatenate Two Words

Easy

Concatenate Two Words

Join two words into one without any separator.

Input format

A single line with two words A and B, separated by a space.

Output format

Print A immediately followed by B, with nothing between them.

Constraints

  • Values fit in a 64-bit signed integer
  • Trailing whitespace and a trailing newline are ignored by the judge

Read from stdin, write to stdout. Sample cases below show the exact format.

Sample cases

Example 1
Input
code ladder
Expected output
codeladder
Example 2
Input
hello world
Expected output
helloworld