class MainClass{ static void Main() { int n = '3' + '4'; char c = (char)n; System.Console.WriteLine(c); // Writes out g. }}