using System;
public class Program
{
public static void Main()
int? maybe = null;
if (maybe is int number)
Console.WriteLine($"The nullable int 'maybe' has the value {number}");
}
else
Console.WriteLine("The nullable int 'maybe' doesn't hold a value");