#abc233b. [abc233_b]A Reverse

[abc233_b]A Reverse

Problem Statement

You are given integers LL, RR, and a string SS consisting of lowercase English letters.
Print this string after reversing (the order of) the LL-th through RR-th characters.

Constraints

  • SS consists of lowercase English letters.
  • 1leSle1051 \\le |S| \\le 10^5 (S|S| is the length of SS.)
  • LL and RR are integers.
  • 1leLleRleS1 \\le L \\le R \\le |S|

Input

Input is given from Standard Input in the following format:

LL RR SS

Output

Print the specified string.


Sample Input 1

3 7
abcdefgh

Sample Output 1

abgfedch

After reversing the 33-rd through 77-th characters of abcdefgh, we have abgfedch.


Sample Input 2

1 7
reviver

Sample Output 2

reviver

The operation may result in the same string as the original.


Sample Input 3

4 13
merrychristmas

Sample Output 3

meramtsirhcyrs