Console.WriteLine("Enter the size : ");
string s = Console.ReadLine();
Console.WriteLine("Enter the elements of the Array : ");
for (int i = 0; i <= (size-1); i++)
string y = Console.ReadLine();
int ele = Int32.Parse(y);
Console.WriteLine("Sum of the Arrays is :" +sum);
Console.WriteLine("Average of the Arrays is :" +avg);
public static void Main()