#abc148b. [abc148_b]Strings with the Same Length

[abc148_b]Strings with the Same Length

Problem Statement

Given are strings ss and tt of length NN each, both consisting of lowercase English letters.

Let us form a new string by alternating the characters of SS and the characters of TT, as follows: the first character of SS, the first character of TT, the second character of SS, the second character of TT, ......, the NN-th character of SS, the NN-th character of TT. Print this new string.

Constraints

  • 1leqNleq1001 \\leq N \\leq 100
  • S=T=N|S| = |T| = N
  • SS and TT are strings consisting of lowercase English letters.

Input

Input is given from Standard Input in the following format:

NN SS TT

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