num=int(input())
to_list=str(num)

#返回的是一个把序列值经过反转之后的迭代器,字符串使用join连接每个''空内容   
print(''.join(reversed(to_list)))