s = list(input().strip()) i,j = map(int, input().split()) s[i], s[j] = s[j], s[i] print("".join(s))