public static void Main()
string secret = "s3cr3t!P@ssw0rd";
ENTRY:Console.Write("Enter password: ");
string input = Console.ReadLine();
if (input.Equals(secret))
System.Console.WriteLine("Welcome!");
else {System.Console.WriteLine("Wrong Password! Try again."); goto ENTRY;}