Problem A
Honour Thy (Apaxian) Parent
While breaking ground for the Obama Presidential Center, which will be located just a few blocks from campus in Jackson Park, archeologists from the Oriental Institute have made an astounding discovery: a new set of scrolls from the ancient and certainly not made-up Apaxian civilization!
It seems that the Apaxian civilization, which the Oriental
Institute is starting to suspect may have been way too
concerned with string manipulation, provided a way for young
Apaxians to extend their name using the name of one of their
parents. The basic principle was to take an Apaxian name
However, there were a few exceptions to this rule:
-
If
ends with e, then the extended name is -
If
ends with any other vowel (a,i,o, or u), we remove that final vowel from , and then extend with -
If
already ends with ex, then the extended name is simply .
As usual, the Oriental Institute has asked us to help them apply the power of computation to generating these extended names.
Input
The input contains two strings separated by a single space:
Output
The output is a single string containing the extended name, as defined above.
Sample Input 1 | Sample Output 1 |
---|---|
menolaxios mox |
menolaxiosexmox |
Sample Input 2 | Sample Output 2 |
---|---|
alemaxe maxos |
alemaxexmaxos |
Sample Input 3 | Sample Output 3 |
---|---|
pamoli toxes |
pamolextoxes |
Sample Input 4 | Sample Output 4 |
---|---|
andrex naxos |
andrexnaxos |