using System;
class Program
{
static void Main() {
string[] arr = { "c++", "c#", "java", "c", "python" };
Array.ForEach(arr, s => Console.Write(s + " "));
int len = arr.Length;
Array.Resize(ref arr, len + 1);
arr[len] = "PHP";
Console.WriteLine();
Array.ForEach(arr, s => Console.Write(s + " "));
}
}
/*
run:
c++ c# java c python
c++ c# java c python PHP
*/