using System;
public class Program
{
private const int a = 0;
public static void Main()
int[] arr = new int [a];
for (int b = 5; b > a; b--)
Console.WriteLine("Введіть {0} число:", b);
arr[b] = Convert.ToInt32(Console.ReadLine());
}
Console.WriteLine("Введено масиви:");
foreach (var item in arr)
Console.Write(item + " | ");