public static void Main()
Console.WriteLine("Broi chisla=>");
int n = int.Parse(Console.ReadLine());
int[] array = new int [n];
for (int i = 0; i < n; i++)
array [i] = int.Parse(Console.ReadLine());
for (int i = 0; i < n; i++)
for (int i = 0; i < n; i++)
Console.WriteLine("Element[{0}] = {1}", i, array[i]);
Console.WriteLine("Въведете търсеното число=>");
int m = int.Parse(Console.ReadLine());
for (int j = 0; j < n; j++)
Console.WriteLine("=>"+ j);