9744: ABC197 —— A - Rotate
[Creator : ]
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'$.
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$
```
```
$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