using System;
public class Program
{
public static void Main()
string a = null;
string b = "B";
string c = "C";
Console.WriteLine(a ?? b ?? c);
}