HackTheBox Reversal Writeup
Explore the basics of cybersecurity in the Reversal Challenge on Hack The Box. This very-easy-level Challenge introduces encryption reversal and file handling concepts in a clear and accessible way, perfect for beginners.
Task
Reverse
Take in a string. Print the reverse.
Example
Input
Test me
Output
em tseT
Poc
1
print(input()[::-1])
This post is licensed under CC BY 4.0 by the author.