Reversal
1st October 2024
Prepared By: ir0nstone
Challenge Author(s): ir0nstone
Difficulty: Very Easy
Given a string, return the reverse of the string.
We take in the string, and then we reverse it.
s = input() print(s[::-1])