line = raw_input("> ")
skip = raw_input("Skip which letter? ")

acc = ""
for c in line:
  if c != skip:
    acc += c
print acc

