while True:
    try:
        str1=input()
        print("".join(list(reversed(str1))))
    except:
        break