AEIOU CONCATENATE

0

0 votes
Problem

The statement of this question is very simple. You have to input 2 strings. The position where you encounter the first vowel in the first string, concatenate the 2nd string to the first one there.

INPUT: First line consists of number 'T', denoting the number of test cases. Next T lines consists of 2 strings separated by a space.

OUTPUT: In a single line, output the required string.

Sample Input
2
defgthklmqwirt khmenutionsldgbjd
bhtyrwtuiklmnopq defgitundbfjsksf
Sample Output
dekhmenutionsldgbjd
bhtyrwtudefgitundbfjsksf
Time Limit: 1
Memory Limit: 256
Source Limit:
Editor Image

?