COCI '08 Contest 3 #2 Kemija

View as PDF

Submit solution


Points: 5
Time limit: 1.0s
Memory limit: 32M

Problem type

Luka is fooling around in chemistry class again! Instead of balancing equations he is writing coded sentences on a piece of paper. Luka modifies every word in a sentence by adding, after each vowel (letters a, e, i, o and u), the letter p and then that same vowel again.

For example, the word kemija becomes kepemipijapa and the word paprika becomes papapripikapa. The teacher took Luka's paper with the coded sentences and wants to decode them.

Write a program that decodes Luka's sentence.

Input Specification

The coded sentence will be given on a single line. The sentence consists only of lowercase letters of the English alphabet and spaces. The words will be separated by exactly one space and there will be no leading or trailing spaces. The total number of characters will be at most 100.

Output Specification

Output the decoded sentence on a single line.

Sample Input 1

zepelepenapa papapripikapa

Sample Output 1

zelena paprika

Sample Input 2

bapas jepe doposapadnapa opovapa kepemipijapa

Sample Output 2

bas je dosadna ova kemija

Comments

There are no comments at the moment.