A - Strings
Editorial
/
Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
英小文字のみからなる 2 つの文字列 S, T が与えられます。これらの文字列を T, S の順に空白を空けずに連結し、できる文字列を出力してください。
制約
- S, T は英小文字のみからなる文字列
- S, T の長さは 1 以上 100 以下
入力
入力は以下の形式で標準入力から与えられる。
S T
出力
できる文字列を出力せよ。
入力例 1
oder atc
出力例 1
atcoder
S = oder
, T = atc
のとき、T, S の順に連結してできる文字列は atcoder
です。
入力例 2
humu humu
出力例 2
humuhumu
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