using System;
public class Program
{
public static void Main()
var foo = true;
const bool bar = false;
const bool baz = true;
if (foo is not (bar or baz))
Console.WriteLine("Hello World");
}