using System;
using System.Linq;
using System.Collections.Generic;
public class Program
{
public static void Main()
Console.WriteLine(
new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }
.Select(x => {
if (x < 5) throw new Exception("Bom");
return x;
})
.Skip(10)
.First()
);
}