using System.Collections.Generic;
public static void Main()
"hell","michael","johnson"
var shorts1 = from w in words
var shorts2 = words.Where(p=>p.Length <=5);
Console.WriteLine("Shwordsshow: {0}",shorts1.Count());
Console.WriteLine("Shwordsshow: {0}",shorts2.Count());