using System;
using System.IO;
using System.Collections.Generic;
public class Program
{
public static void Main()
var copyCommands = new List<string>
"Wut",
"Wat wat",
"123wat"
};
foreach (string command in copyCommands)
Console.WriteLine(new StringReader(command).ReadToEnd());
Console.WriteLine(command);
}