using System; using System.IO; class Start { static void Main() { Cs.WriteLine("Hello World!"); Cs.Flush(); } static StreamWriter Cs = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; static void Swap(ref T a, ref T b) { T c = a; a = b; b = c; } }