101490: [AtCoder]ABC149 A - Strings

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

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.

Constraints

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

Input

Input is given from Standard Input in the following format:

$S$ $T$

Output

Print the resulting string.


Sample Input 1

oder atc

Sample Output 1

atcoder

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


Sample Input 2

humu humu

Sample Output 2

humuhumu

Input

题意翻译

### 题目描述 输入 $ 2 $ 个由小写字母组成的字符串 $ S $, $ T $ 并且将它们交换位置输出。 ## 输入格式 按一下格式输入$ 2 $ 个由小写字母组成的字符串 $ S $, $ T $ 。 > $ S $ $ T $ ## 输出格式 将它们交换位置输出。 ### 样例输入 #1 ``` oder atc ``` ### 样例输出 #1 ``` atcoder ``` ### 样例输入 #2 ``` humu humu ``` ### 样例输出 #2 ``` humuhumu ``` ### 提示 - $ S $, $ T $ 是由小写字母组成的字符串。 - $ S $, $ T $ 的长度在 $ 1 $ 到 $ 100 $ 以内。 ### 样例说明 1 $ S\ = $ `oder`, $ T\ = $ `atc`将它们交换位置后重组,组成 `atcoder`。

加入题单

算法标签: