using System;
public class Program
{
public static void Main()
int? nullableInt = 10;
var x = nullableInt ?? 0;
Console.WriteLine(x);
}