Problem9744--ABC197 —— A - Rotate

9744: ABC197 —— A - Rotate

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

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

Input is given from Standard Input in the following format:

```
$S$
```

Output

Print $S'$.

Constraints

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

Sample 1 Input

abc

Sample 1 Output

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

Sample 2 Input

aab

Sample 2 Output

aba

Source/Category