using System; using System.Text; namespace prog { class MainClass { public static void Main (string[] args) { StringBuilder s = new StringBuilder(); Random rnd = new Random(); s.AppendLine(""); s.AppendLine(""); s.Append(""); for(int i=0; i<3; i++) s.Append(""); s.AppendLine(""); s.AppendLine(""); s.AppendLine(""); for( int i=0; i<3; i++ ) { s.Append(""); for( int j=0; j<3; j++ ) s.Append(""); s.AppendLine(""); } s.AppendLine(""); s.AppendLine("
" + "XYZ"[i] + "
"+i+""+rnd.Next(10000)+"
"); Console.WriteLine( s ); } } }