![img](../../../../../assets/htb.png)
Reversal
1st October 2024
Prepared By: ir0nstone
Challenge Author(s): ir0nstone
Difficulty: Very Easy
# Synopsis
Given a string, return the reverse of the string.
## Skills Required
* Basic Python
# Solution
We take in the string, and then we reverse it.
```py
s = input()
print(s[::-1])
```