using System;
public class Program
{
public static void Main()
int i=12;
//boxing
object obj=i;
//unboxing
int sme= (int)obj;
}