Given a string *s* and an integer *k*, rotate *s* to the right by *k* positions.
Two lines: string s, then integer k.
Rotated string.
Example 1:
Input:
s = "abcde" goal = "cdeab"
Output:
true
Example 2:
Input:
s = "abcde" goal = "abced"
Output:
false