All the First Order messages are sent using an encryption scheme. You have cracked their code and must write a program to decode their messages. Their code works as follows. The table below is used to replace all of the vowels in the original message (plaintext) with a different vowel to create the encrypted message.
| Original | a | e | i | o | u | y |
|---|---|---|---|---|---|---|
| Replacement | y | a | e | i | o | u |
A positive integer, n, on the first line. After the first line there will be n lines of encrypted text.
The n lines of decoded text.