# reverse.py


import sys


arg = sys.argv[1]

print(arg[::-1])


# ejecutar
# python3 reverse.py "Real Python"