using System;
public class Program
{
public static void Main()
int [] a;
a = new int[] {7, -2, 3, 8, -5};
for (int i=0; i < a.Length; i++)
Console.Write(a[i] +" ");
}