atcoder#TENKA12018A. Measure
Measure
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.
abc
cba
As the length of is , we print it after reversing it.
ac
ac
As the length of is , we print it as is.