using System;
using System.Collections.Generic;
using System.Linq;
namespace Test;
public class Program
{
public static void Main(string[] args)
var thebros = new List<int>{1, 2, 3, 4};
var thelads = thebros.Where(lad => lad > 1);
if (thelads.Any(lad => lad == 3))
foreach (var lad in thelads)
Console.WriteLine(lad);
}