using System;
using System.Linq;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int[] arr = { 13, 15, 33, 50, 99, 200 };
bool b = arr.All(element => element >= 40);
Console.WriteLine(b);
}
}
}
/*
run:
False
*/