#ABC148B. Strings with the Same Length

Strings with the Same Length

题目描述

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.

给出长度分别为 NN 的字符串 sstt ,它们都由小写英文字母组成。

让我们通过交替使用 SS 的字符和 TT 的字符来组成一个新字符串,具体如下: SS 的第一个字符, TT 的第一个字符, SS 的第二个字符, TT 的第二个字符, ......SSNN -3个字符, TTNN -3个字符。打印这个新字符串。

输入格式

输入内容按以下格式标准输入:

NN
SS TT

输出格式

打印所形成的字符串。

样例 #1

样例输入 #1

2
ip cc

样例输出 #1

icpc

样例 #2

样例输入 #2

8
hmhmnknk uuuuuuuu

样例输出 #2

humuhumunukunuku

样例 #3

样例输入 #3

5
aaaaa aaaaa

样例输出 #3

aaaaaaaaaa

说明

数据规模与约定

  • 1N1001 \leq N \leq 100
  • S=T=N|S| = |T| = N
  • SSTT 是由小写英文字母组成的字符串。