text = "pidor blya, ya tibe pokushati prines"
def delete(text):
	for i in "pidoryahuilo":
		text = text.replace(i, "")
	return text
print delete(text)