class Program
{
static void Main(string[] args)
{
byte[] b = new byte[]{(byte)'a', (byte)'l', (byte)' ', (byte)'g', (byte)'o', (byte)'r', (byte)'e'};
int count = 0;
for (int i = 0; i < b.Length; i++)
count += b[i];
Console.WriteLine(count);
Console.ReadLine();
}
}