using System;
public class Program
{
public static void Main()
var test = 1;
if (test == 0)
Console.WriteLine("first");
}
else if (test == 1)
Console.WriteLine("second");
else if (test == 2)
Console.WriteLine("third");
else if (test == 0)
Console.WriteLine("fourth");
else
Console.WriteLine("no match");