A - Measure Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

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

制約

  • SS の長さは 22 または 33 である
  • SS は英小文字からなる

入力

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

SS

出力

SS の長さが 22 の場合はそのまま、長さが 33 の場合は逆順にして出力せよ。


入力例 1Copy

Copy
abc

出力例 1Copy

Copy
cba

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


入力例 2Copy

Copy
ac

出力例 2Copy

Copy
ac

SS の長さは 22 なので、そのまま出力します。

Score : 100100 points

Problem Statement

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

Constraints

  • The length of SS is 22 or 33.
  • SS consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

Output

If the length of SS is 22, print SS as is; if the length is 33, print SS after reversing it.


Sample Input 1Copy

Copy
abc

Sample Output 1Copy

Copy
cba

As the length of SS is 33, we print it after reversing it.


Sample Input 2Copy

Copy
ac

Sample Output 2Copy

Copy
ac

As the length of SS is 22, we print it as is.



2025-04-04 (Fri)
09:52:25 +00:00