Concatenate two lines

Read two input lines and print their concatenation with nothing inserted between them.

Easy1StringNo attempts yetTime limit1sMemory limit256 MB

Problem

Two strings are given on two separate lines. Write a program that concatenates them in order and prints the result on one line.

Do not insert a space or any other character between them.

Input

The first line contains the string AA.

The second line contains the string BB.

Aside from the trailing newline of each line, the line contents are part of the string.

Output

Print the concatenation of AA and BB on one line.

Hint

Do not put a space or a newline between the two strings. The judge input always has two lines.