import std.stdio, std.conv, std.string, std.range, std.math, std.bigint, std.algorithm; void main() { auto input = readln.split; auto S = input[0].to!(dchar[]); auto t = input[1].to!int; auto u = input[2].to!int; S[t] = ' '; S[u] = ' '; S.split.join.writeln; }