#ABC148B. Strings with the Same Length
Strings with the Same Length
题目描述
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.
给出长度分别为 的字符串 和 ,它们都由小写英文字母组成。
让我们通过交替使用 的字符和 的字符来组成一个新字符串,具体如下: 的第一个字符, 的第一个字符, 的第二个字符, 的第二个字符, , 的 -3个字符, 的 -3个字符。打印这个新字符串。
输入格式
输入内容按以下格式标准输入:
输出格式
打印所形成的字符串。
样例 #1
样例输入 #1
2
ip cc
样例输出 #1
icpc
样例 #2
样例输入 #2
8
hmhmnknk uuuuuuuu
样例输出 #2
humuhumunukunuku
样例 #3
样例输入 #3
5
aaaaa aaaaa
样例输出 #3
aaaaaaaaaa
说明
数据规模与约定
- 和 是由小写英文字母组成的字符串。