using System;
public class Program
{
public static void Main()
int? ff = 2;
ff ??= (0 + 5);
Console.WriteLine(ff);
}