#abc149a. [abc149_a]Strings

[abc149_a]Strings

Problem Statement

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

Constraints

  • SS and TT are strings consisting of lowercase English letters.
  • The lengths of SS and TT are between 11 and 100100 (inclusive).

Input

Input is given from Standard Input in the following format:

SS TT

Output

Print the resulting string.


Sample Input 1

oder atc

Sample Output 1

atcoder

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


Sample Input 2

humu humu

Sample Output 2

humuhumu