using System;
using System.Text;
class Program
{
static void Main(string[] args)
{
byte[] str = new byte[] { 0x7B, 0x22, 0x62, 0x61, 0x6C, 0x61, 0x6E,
0x63, 0x65, 0x22, 0x3A, 0x30, 0x2C, 0x22, 0x62, 0x6F };
Console.WriteLine(Encoding.ASCII.GetString(str));
}
}