using System;
using System.Linq;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] arr = { "c#", "c", "c++", "java" };
string a = arr.ElementAtOrDefault(0);
string b = arr.ElementAtOrDefault(-1);
Console.WriteLine(a);
Console.WriteLine(b);
}
}
}
/*
run:
c#
*/