#输入字符串
str = input()
#将字符串中的字母全部进行小写
str_lower=str.lower()
#检查该字符串中字母是否全部是小写
if str==str_lower:
    print(str[::-1])