using System;
public class Program
{
public static void Main()
{start:
Console.WriteLine("Would you like to run the program again? y/n");
string choice = Console.ReadLine();
if (choice == "y" | | choice == "Y");
goto start; // start needs to be included as a bookmark at the beginnning of your program
}