//first draw an S... using System; public class DiViSiOn { static public void Main (){ string and, The, trogdor, comes, In, the; int night; night = 2; and = Console.ReadLine(); The = "obfuscate"; trogdor = "baffle"; comes = "obscure"; In = "befuddle"; the = "confound"; Trogdor(In,ref The,ref the); Trogdor(ref trogdor); comes = " divisible "; Trogdor(comes, 2); In = "In"; char[] a = In.ToCharArray(); a[0] = (char)98; a[1] = (char)121; In = new string(a); the = " zero!"; try { night = int.Parse(and); //**********************************************************************// // // /**/ Console.WriteLine("{0}"+The+trogdor+comes+In+the,night); } /**/ // // //**********************************************************************// catch { Console.WriteLine(and+The+trogdor+comes+In+the,night);}} static public void Trogdor(string In, ref string Void, ref string The){ if (The == In){ In = "the countryside is"; The = "BURNINATED!"; } else Void = " is "; } static public void Trogdor(ref string trogdor){ char[] a = new char[3]; a[0] = '<'; a[1] = '='; a[2] = 'B'; Trogdor(ref a); trogdor = new String(a); } static public void Trogdor(ref char[] a){ a[0] = (char)( (int)a[0] + 50); a[1] = (char)( (int)a[1] + 50); a[2] = (char)( (int)a[2] + 50); } static public void Trogdor(string trogdor, int In){ if (In == 2) trogdor = " OBSCURED!"; else In += 24; }}