#abc197a. [abc197_a]Rotate
[abc197_a]Rotate
Problem Statement
Given is a string of length .
Move the first character of to the end of and print the resulting string .
Constraints
- is a string of length consisting of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
Print .
Sample Input 1
abc
Sample Output 1
bca
Moving the first character a
of the string abc
results in bca
.
Sample Input 2
aab
Sample Output 2
aba