100 atcoder#ABC197A. [ABC197A] Rotate
[ABC197A] Rotate
Score : points
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 .
abc
bca
Moving the first character a
of the string abc
results in bca
.
aab
aba