#abc197a. [abc197_a]Rotate

[abc197_a]Rotate

Problem Statement

Given is a string SS of length 33.
Move the first character of SS to the end of SS and print the resulting string SS'.

Constraints

  • SS is a string of length 33 consisting of lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

Output

Print SS'.


Sample Input 1

abc

Sample Output 1

bca

Moving the first character a of the string abc results in bca.


Sample Input 2

aab

Sample Output 2

aba