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