using System;
using System.Linq;
class Program
{
static void Main() {
string[] arr = {"c++", "python", "c#", "java"};
int shortest_size = arr.Min(s=>s.Length);
string shortest_string = arr.FirstOrDefault(s=>s.Length == shortest_size);
Console.Write(shortest_string);
}
}
/*
run:
c#
*/