using System;
namespace ConsoleApplication_C_Sharp
{
static class Program
{
static void Main()
{
string[] arr = { "c#", "vb.net", "java", "php", "python" };
string[] arr_copy = new string[arr.Length - 2];
Array.Copy(arr, arr_copy, arr.Length - 2);
foreach (string element in arr_copy)
Console.WriteLine(element);
}
}
}
/*
run:
c#
vb.net
java
*/