Problem10815--ABC149 - A - Strings

10815: ABC149 - A - Strings

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Given are two strings $S$ and $T$ consisting of lowercase English letters. Concatenate $T$ and $S$ in this order, without space in between, and print the resulting string.

Input

Input is given from Standard Input in the following format:

```
$S$ $T$
```

Output

Print the resulting string.

Constraints

-   $S$ and $T$ are strings consisting of lowercase English letters.
-   The lengths of $S$ and $T$ are between $1$ and $100$ (inclusive).

Sample 1 Input

oder atc

Sample 1 Output

atcoder

When $S = $ oder and $T = $ atc, concatenating $T$ and $S$ in this order results in atcoder.

Sample 2 Input

humu humu

Sample 2 Output

humuhumu

Source/Category