B - ∵∴∵ Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 200

問題文

すぬけ君は新しくできたプログラミングコンテストに会員登録しました。 登録に使ったパスワードを覚えておく自信が無かったすぬけ君は、 手元の紙にパスワードをメモしておくことにしました。 ただし、そのままメモをすると誰かにパスワードを盗まれてしまうかもしれないので、 文字列の偶数番目の文字と奇数番目の文字をそれぞれ別々の紙にメモしておくことにしました。

パスワードの奇数番目の文字だけを順番を変えずに取り出した文字列 O と、 偶数番目の文字だけを順番を変えずに取り出した文字列 E が与えられます。 すぬけ君のかわりにパスワードを復元してください。

制約

  • O, E は小文字のアルファベット( a - z )からなる文字列
  • 1 \leq |O|,|E| \leq 50
  • |O| - |E|0 または 1 である。

入力

入力は以下の形式で標準入力から与えられる。

O
E

出力

パスワードを1行に出力せよ。


入力例 1

xyz
abc

出力例 1

xaybzc

xaybzc の奇数番目の文字のみを取り出すと、 xyz になり、 偶数番目の文字のみを取り出すと abc になります。


入力例 2

atcoderbeginnercontest
atcoderregularcontest

出力例 2

aattccooddeerrbreeggiunlnaerrccoonntteesstt

Score : 200 points

Problem Statement

Snuke signed up for a new website which holds programming competitions. He worried that he might forget his password, and he took notes of it. Since directly recording his password would cause him trouble if stolen, he took two notes: one contains the characters at the odd-numbered positions, and the other contains the characters at the even-numbered positions.

You are given two strings O and E. O contains the characters at the odd-numbered positions retaining their relative order, and E contains the characters at the even-numbered positions retaining their relative order. Restore the original password.

Constraints

  • O and E consists of lowercase English letters (a - z).
  • 1 \leq |O|,|E| \leq 50
  • |O| - |E| is either 0 or 1.

Input

Input is given from Standard Input in the following format:

O
E

Output

Print the original password.


Sample Input 1

xyz
abc

Sample Output 1

xaybzc

The original password is xaybzc. Extracting the characters at the odd-numbered positions results in xyz, and extracting the characters at the even-numbered positions results in abc.


Sample Input 2

atcoderbeginnercontest
atcoderregularcontest

Sample Output 2

aattccooddeerrbreeggiunlnaerrccoonntteesstt