What does this program print when a nullable value is boxed?
csharp
using System;
int? count = null;
object? boxed = count;
Console.WriteLine(boxed is null);
count = 7;
boxed = count;
Console.WriteLine(boxed.GetType().Name);
using System;
int? count = null;
object? boxed = count;
Console.WriteLine(boxed is null);
count = 7;
boxed = count;
Console.WriteLine(boxed.GetType().Name);