#AT1763. A - Rotate

A - Rotate

A - Rotate

Score : $100$ points

Problem Statement

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

Constraints

  • $S$ is a string of length $3$ consisting of lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

Output

Print $S'$.


abc
bca

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


aab
aba