# Arup Guha
# 7/11/2012
# Prints out a message with the letters b, f, i, k, p, r and y deleted.
# Note: These were chosen completely at random.

def main():

    ILLEGAL = "bfikpry"

    phrase = input("Enter a phrase.\n")

    # Go through each letter.
    for i in range(len(phrase)):

        # Only print if it's not in our illegal list.
        if not (phrase[i] in ILLEGAL):
            print(phrase[i],sep="",end="")

    print()


main()
