using System;
public class Program
{
public static void Main()
int i,j,k;
Console.WriteLine("enter the size");
i=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter ur lovable numbers");
int[] array=new int[i];
for(k=0;k<i;k++)
array[k]=Convert.ToInt32(Console.ReadLine());
}
int largest=array[i-1];
for(j=0;j<i;j++)
if(array[j]>largest)
largest=array[j];
Console.WriteLine("large of array"+largest);