#ABC236A. [ABC236A] chukodai

[ABC236A] chukodai

Score : 100100 points

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 2S102 \leq |S| \leq 10.
  • 1a<bS1 \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.

chokudai
3 5
chukodai

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

aa
1 2
aa

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

aaaabbbb
1 8
baaabbba