Read two strings. Check if one is a rotation of the other. Example: 'abcde' and 'cdeab' => Yes
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
abcde cdeab
Output
Yes