100 atcoder#ABC197A. [ABC197A] Rotate

[ABC197A] Rotate

Score : 100100 points

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'.

abc
bca

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

aab
aba