Reverse Sequence

 

文字列反転

問題ページ

解き方

 与えられた文字列を逆順で出力するだけ。

コード(python)

print(input()[::-1])