import java.io.*; import java.util.*; public class Main_yukicoder729 { private static Scanner sc; private static Printer pr; private static void solve() { char[] s = sc.next().toCharArray(); int i = sc.nextInt(); int j = sc.nextInt(); char tmp = s[i]; s[i] = s[j]; s[j] = tmp; pr.println(s); } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes())); pr = new Printer(System.out); solve(); // pr.close(); pr.flush(); // sc.close(); } static String INPUT = null; private static class Printer extends PrintWriter { Printer(OutputStream out) { super(out); } } }