Write a python program that takes a string input and prints the reversed string in less than or equal to 3 lines of code. code example
Example: reverse string in python
'hello world'[::-1]
'dlrow olleh'
'hello world'[::-1]
'dlrow olleh'