using System;
public class Program
{
public static void Main()
object a = 1;
string b = a as string;
Console.WriteLine(a);
Console.WriteLine(b);
}