using System;
namespace Password_Guess
{
internal class Program
{
static void Main(string[] args)
{
string password = Console.ReadLine();
if (password == "s3cr3t!P@ssw0rd")
{
Console.WriteLine("Welcome");
}
else
{
Console.WriteLine("Wrong password!");
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)