#abc236a. [abc236_a]chukodai

[abc236_a]chukodai

Problem Statement

You are given a string SS consisting of lowercase English letters.

Swap the aa-th and bb-th characters from the beginning of SS and print the resulting string.

Constraints

  • SS is a string consisting of lowercase English letters.
  • The length of SS, S|S|, satisfies 2leqSleq102 \\leq |S| \\leq 10.
  • 1leqa<bleqS1 \\leq a < b \\leq |S|
  • aa and bb are integers.

Input

Input is given from Standard Input in the following format:

SS aa bb

Output

Print the answer.


Sample Input 1

chokudai
3 5

Sample Output 1

chukodai

After swapping the 33-rd character o and 55-th character u of chokudai, we have chukodai.


Sample Input 2

aa
1 2

Sample Output 2

aa

In this sample, after swapping the 11-st and 22-nd characters of SS, we have the same string as SS.


Sample Input 3

aaaabbbb
1 8

Sample Output 3

baaabbba