using System;
#nullable enable
public class Program
{
public static void Main()
string x = null;
if (x == null)
Console.WriteLine("null was assigned");
}
else
Console.WriteLine("null was not assigned");