The inhabitants on planet P people speak a strange language, called language P. For us, this language is not so difficult to learn. After all, it is very similar to plain English, but every group of vowels is followed by a letter p and a repetition of the same group of vowels. A groups of vowels is either a sequence of one or more consecutive vowels (a, e, i, o and u) or the combination ij. As such, the word cuckoo is translated into language P as cupuckoopoo.

Assignment

Write a program that can translate words and sentences in language P into plain English.

Input

A single line containing a word or a sentence in language P.

Output

A single line containing the input line translated into plain English.

Example

Input:

Grapandmapa Epevepe's cupuckoopoo clopock seepeems bropokepen.

Output:

Grandma Eve's cuckoo clock seems broken.

Example

Input:

Whepen thepe capat's apawapay, thepe mipicepe wipill plapay.

Output:

When the cat's away, the mice will play.