using System;
public class Program
{
public static void Main()
string password;
Console.WriteLine("Please enter the password:");
password = Console.ReadLine();
if (password == "secret")
Console.WriteLine("Welcome");
}
else
Console.WriteLine("Not welcome");