Language Basics C# Book

using System;
class Test
{
static void Main()
{
int i = 5;
dynamic d = i;
int j = d;
Console.WriteLine(j);
}
}
The output:
5