public static void Main()
Console.WriteLine("Hello World");
int[]a={35,1,18,3,12,9,11};
Console.WriteLine("ohhhho");
public static int[] copy(int[]a,int fro,int to)
int[]b=new int[to-fro+1];
if(!(fro>=0 && fro<a.Length && to>=0&& to<a.Length))
for(int i=0;i<a.Length;i++)
public static void print(int[]a)
for(int i=0;i<a.Length;i++)
Console.Write(a[i]+ " ");