#ABC149A. Strings

Strings

题目描述

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.

给出两个由小写英文字母组成的字符串 SSTT 。按此顺序连接 TTSS ,中间不留空格,并打印得到的字符串。

输入格式

输入内容按以下格式标准输入:

SS TT

输出格式

打印结果字符串。

样例 #1

样例输入 #1

oder atc

样例输出 #1

atcoder

样例 #2

样例输入 #2

humu humu

样例输出 #2

humuhumu

说明

数据规模与约定

  • SSTT 是由小写英文字母组成的字符串。
  • SSTT 的长度介于 11100100 (含)之间。

样例 11 解释

S=S = oder "和 T=T = atc 时,按此顺序连接 TTSS 得到 atcoder