using System;
using System.Linq;
public class Program
{
public static void Main()
string[] items = null;
Console.WriteLine(items?.Any() ?? true);
}