using System.Numerics; public class Program { public static void Main() { //BigInteger num = BigInteger.Parse(Console.ReadLine() ?? string.Empty); //int num = int.Parse(Console.ReadLine() ?? string.Empty); //string[] moji = (Console.ReadLine() ?? string.Empty).Trim().Split(' '); string str = Console.ReadLine() ?? string.Empty; string str2 = Console.ReadLine() ?? string.Empty; if(str.Length==str2.Length+1) { string q = ""; for(int i = 0;i < str2.Length;i++) { q += str[i].ToString() + str2[i].ToString(); } q += str[str.Length - 1]; Console.WriteLine(q); } else if (str.Length == str2.Length) { string h = ""; for (int i = 0;i