using System; class echo { static void Main(string[] args) { foreach(string arg in args) { Console.Write("{0} ", arg); } Console.WriteLine(""); } }