using System;
public class Program
{
public static void Main()
var age = 21;
switch (age)
case 5:
Console.WriteLine("Five");
break;
case 10:
case 15:
case 20:
default:
goto OtherFunction;
}
OtherFunction:
Console.WriteLine("Other function executed");