

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
英小文字からなる長さ または の文字列 が与えられます。長さが の場合はそのまま、長さが の場合は逆順にして出力してください。
制約
- の長さは または である
- は英小文字からなる
入力
入力は以下の形式で標準入力から与えられる。
出力
の長さが の場合はそのまま、長さが の場合は逆順にして出力せよ。
入力例 1Copy
abc
出力例 1Copy
cba
の長さは なので、逆順にして出力します。
入力例 2Copy
ac
出力例 2Copy
ac
の長さは なので、そのまま出力します。
Score : points
Problem Statement
You are given a string of length or consisting of lowercase English letters. If the length of the string is , print it as is; if the length is , print the string after reversing it.
Constraints
- The length of is or .
- consists of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
If the length of is , print as is; if the length is , print after reversing it.
Sample Input 1Copy
abc
Sample Output 1Copy
cba
As the length of is , we print it after reversing it.
Sample Input 2Copy
ac
Sample Output 2Copy
ac
As the length of is , we print it as is.