{"raw_statement":[{"iden":"problem statement","content":"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.\nYou 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."},{"iden":"constraints","content":"*   $O$ and $E$ consists of lowercase English letters (`a` - `z`).\n*   $1 \\leq |O|,|E| \\leq 50$\n*   $|O| - |E|$ is either $0$ or $1$."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$O$\n$E$"},{"iden":"sample input 1","content":"xyz\nabc"},{"iden":"sample output 1","content":"xaybzc\n\nThe 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`."},{"iden":"sample input 2","content":"atcoderbeginnercontest\natcoderregularcontest"},{"iden":"sample output 2","content":"aattccooddeerrbreeggiunlnaerrccoonntteesstt"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}