Score : $100$ points
Given is a string $S$ of length $3$.
Move the first character of $S$ to the end of $S$ and print the resulting string $S'$.
Input is given from Standard Input in the following format:
$S$
Print $S'$.
abc
bca
Moving the first character a
of the string abc
results in bca
.
aab
aba