using System;
public class Program
{
public static void Main()
int i = 6;
object o = (object)i;
var s = (int)o;
}