On some Polynesian islands, people speak a language with the following properties:
a, e, i, o, and u are vowels; every other letter is a consonant.)r and l, nor the sounds s and k.When Polynesians adopt words or expressions from other languages, they change those words — according to certain rules — so that the islanders can pronounce them more comfortably. A slightly simplified version of these rules is as follows:
tee becomes te, toooo becomes to, and mokka becomes moka.tea also becomes te.a is always inserted. For example, ahv becomes ahava and onn becomes ona.r becomes l, and s becomes k. For example, kass becomes kaka and tervist becomes telavikata.Write a program that "translates" the given text into Polynesian pronunciation according to the rules above.
The input consists of a single line containing text made up of lowercase Latin letters a–z and spaces, with a length between 1 and 100 characters. The text neither begins nor ends with a space, and there is always exactly one space between two words.
Print, on a single line, the Polynesian rendering of the text given in the input.