using System;
using System.Linq;
using System.Collections.Generic;
class Program
{
static void Main() {
List<string> lst = new List<string>();
lst.Add("c#");
lst.Add("c");
lst.Add("c++");
lst.Add("c");
lst.Add("c#");
lst.Add("java");
lst.Add("c#");
string maxRepeated = lst.GroupBy(s => s)
.OrderByDescending(s => s.Count())
.First().Key;
Console.Write(maxRepeated);
}
}
/*
run:
c#
*/