# -*- coding: utf8 -*-

texto = raw_input("Inserte un texto: ")
print "".join(x for x in texto if x not in "aeiouáéíóú")

