using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
string x = "album22";
var y = x switch {
_ when x == "album" => "yes",
_ when x == "album2" => "no",
_ => "crap",
};
Console.WriteLine($"y = {y}");
}