using System;
public class Program
{
public static void Main()
int[] arr1 = [5,32,36,43,5];
int b = arr1.Length;
for (int i = 0; i < arr1.Length; i++)
if (arr1[i] == arr1[arr1.Length - 1 - i])
}
Console.WriteLine(arr1[i]);