ctf-resources/htb/hacktheboo2024/coding/[Very Easy] reversal/README.md

476 B

img

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.

s = input()

print(s[::-1])