A - Measure Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

英小文字からなる長さ 2 または 3 の文字列 S が与えられます。長さが 2 の場合はそのまま、長さが 3 の場合は逆順にして出力してください。

制約

  • S の長さは 2 または 3 である
  • S は英小文字からなる

入力

入力は以下の形式で標準入力から与えられる。

S

出力

S の長さが 2 の場合はそのまま、長さが 3 の場合は逆順にして出力せよ。


入力例 1

abc

出力例 1

cba

S の長さは 3 なので、逆順にして出力します。


入力例 2

ac

出力例 2

ac

S の長さは 2 なので、そのまま出力します。

Score : 100 points

Problem Statement

You are given a string S of length 2 or 3 consisting of lowercase English letters. If the length of the string is 2, print it as is; if the length is 3, print the string after reversing it.

Constraints

  • The length of S is 2 or 3.
  • S consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:

S

Output

If the length of S is 2, print S as is; if the length is 3, print S after reversing it.


Sample Input 1

abc

Sample Output 1

cba

As the length of S is 3, we print it after reversing it.


Sample Input 2

ac

Sample Output 2

ac

As the length of S is 2, we print it as is.