s,t,u=(str(i) for i in input().split()) t=int(t) u=int(u) if t==u: del s[t] elif t>u: del s[t] del s[u] else: del s[t] del s[u-1] print(s)