#abc148b. [abc148_b]Strings with the Same Length
[abc148_b]Strings with the Same Length
Problem Statement
Given are strings and of length each, both consisting of lowercase English letters.
Let us form a new string by alternating the characters of and the characters of , as follows: the first character of , the first character of , the second character of , the second character of , , the -th character of , the -th character of . Print this new string.
Constraints
- and are strings consisting of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
Print the string formed.
Sample Input 1
2
ip cc
Sample Output 1
icpc
Sample Input 2
8
hmhmnknk uuuuuuuu
Sample Output 2
humuhumunukunuku
Sample Input 3
5
aaaaa aaaaa
Sample Output 3
aaaaaaaaaa