S,t,u=input().split() t=int(t) u=int(u) n=[] for i in range(len(S)): if i!=t and i!=u: n.append(S[i]) print("".join(n))