//Merge two sorted arrays into single array
//input1 = {1,3,5} ,
//input2 = {2,4,6,7,8,9}
//Output = {1,2,3,4,5,6,7,8,9}
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}