using System;
public class Program
{
public static void Main()
int[] poleIntu = { 40, -3, 16, 5, 7, 5, 0, 10};
Console.WriteLine(poleIntu[2]);
poleIntu[2] = 4;
Console.WriteLine("Výpis pole intů:");
for (int i = 0; i < poleIntu.Length; i++)
Console.Write(poleIntu[i] + " ");
}