using System;
public class Program
{
public static void Main()
int? test = null;
if (test > 0)
Console.WriteLine("Foobar");
}