using System;
public class Program
{
public static void Main()
string pass=Console.ReadLine();
if (pass == "s3cr3t!P@ssw0rd")
Console.WriteLine("Welcome");
else
Console.WriteLine("Wrong password!");
}