using System;
public class Program
{
public static void Up(int [] ar)
Console.Write("place: ");
for (int g = 0; g < ar.Length-1; g++)
if (ar[g] < ar [g + 1])
Console.Write("Each limb in the array is larger than the left" + (g + " "));
}
else
if (ar[g] > ar [g + 1])
Console.Write("Each limb in the array is larger to the right" + (g + " "));