you & mdash; Communication engineer at the Odyssey-7 intergalactic station. A new energy -efficient communication protocol "Consonant" is used to send text messages to Earth. The peculiarity of this protocol is that to save traffic and energy, it automatically removes from any message all the lowercase (small) English vowels: 'a' a ',' e 'i', 'o', 'u'.
rn
all other symbols; & mdash; title vowels (a, e, i, o, u), all consonants, numbers, punctuation marks and gaps & mdash; The protocol leaves without changes, so as not to violate the structure and readability of critical data.
rn
your task:
Write a symbol program that will encode messages according to the rules of the Consonant protocol. The program should take one line of the text to the input and display its processed version.
rn
Requirements for implementation:
To solve only the basic constructions: Entry and output of the data, data, data, data. Cycle & nbsp; for & nbsp; for the enforcement of characters and the conditional operator & nbsp; if to check each symbol.
Input format
The initial message for coding (string, string). Can contain any characters.
Output format
An encoded message after the removal of lowercase English vowels (line, string).
Example
Input
Attendation! An Incoming Asteroid is Detected. EVACUATE IMMEDITELY.
Output
attntn! An NCMNG STRD S DTCTD. EVCT mmdtly.
Hint
There will be no clue here, decide for yourself!