using System;
public class Program
{
public static void Main()
int n = '3'+'4';
Console.WriteLine(n);
char c = (char)n;
Console.WriteLine(c);
}