Problem2202--ABC148b- Strings with the Same Length

2202: ABC148b- Strings with the Same Length

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

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

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

Input

Input is given from Standard Input in the following format:
NNSSTT

Output

Print the string formed.

Sample Input Copy

8
hmhmnknk uuuuuuuu

Sample Output Copy

humuhumunukunuku

Source/Category