using System;
using System.Linq;
using System.Collections.Generic;
class Program
{
static void Main() {
var list = new List<string> { "c-sharp", "c", "c++", "java", "python", "php" };
var result = (from w in list select w.Length).Sum();
Console.WriteLine(result);
}
}
/*
run:
24
*/