using System;
public class Program
{
public static void Main()
int t = 2;
if (t is 1 or 2 or 3)
Console.WriteLine("Match!");
}