using System;
class Program
{
static void Main() {
string[] arr = { "c#", "c", "c++", "java", "rust" };
string first = arr[0];
string last = arr[arr.Length - 1];
Console.WriteLine($"FIRST: {first}");
Console.WriteLine($"LAST: {last}");
}
}
/*
run:
FIRST: c#
LAST: rust
*/