using System;
public class Program
{
public static void Main()
byte b = 0;
b += 9;
Console.WriteLine(b);
Console.WriteLine(b.GetType().Name);
}