N = int(input()) S = input() X, C = input().split() X = int(X) print(S[:X-1] + C + S[X:])