using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
List<int> numbers = new List<int> {1,2,3,4,5,10,20};
Console.WriteLine(numbers.Aggregate(10, (smallest, next) => next < smallest ? smallest = next: smallest));
}