using System;
using System.Linq;
public class Program
{
class Lot
public int Id { get; set; }
}
public static void Main()
var lots = new Lot[0];
Console.WriteLine(lots.Max(l => l.Id));