using System;
public class Program
{
public static void Main()
int x = 3;
if ( x == 3) goto customLabel; x++;
customLabel: Console.WriteLine(x); // Displays 3
}