Data Type C# Tutorial

class MainClass
{
  static void Main()
  {
    int distance = 'f' - 'c';
    System.Console.WriteLine(distance);
  }
}