using System.Collections.Generic;
public static void Main()
Console.WriteLine("kolko chisla:");
int puti=int.Parse(Console.ReadLine());
int [] arr=new int[puti];
int n=int.Parse(Console.ReadLine());
Console.WriteLine(String.Join(" ",arr));
Console.WriteLine(arr.Sum());
Console.WriteLine(arr.Average());
for(int i=0;i<arr.Length;i++)
Console.WriteLine("{0}->{1}",arr[i],i);
for(int i=0;i<arr.Length;i+=2)
Console.WriteLine(String.Join(" ",arr));