using System;
using System.Text;
class Program
{
static void Main() {
string[] arr = {"c#", "c", "c++", "php"};
StringBuilder sb = new StringBuilder();
foreach (string s in arr) {
sb.Append(s).Append(" ");
}
Console.WriteLine(sb);
}
}
/*
run:
c# c c++ php
*/