using System;
public class Program
{
public static void Main()
int x = 1;
int? nullableInt = x == 1 ? x : null;
Console.WriteLine(nullableInt);
}