using System; class c1802 { static int Main() { byte i_b = (byte)1; checked { for (int count=1;count<10;++count) { Console.Write(count);Console.Write(" "); Console.Write(i_b);Console.WriteLine(" "); i_b = (byte)(i_b * 2); } } return 0; } }