Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Password
- {
- class Program
- {
- static void Main()
- {
- string pass = Console.ReadLine();
- if (pass == "s3cr3t!P@ssw0rd")
- {
- Console.WriteLine("Welcome");
- }
- else
- {
- Console.WriteLine("Wrong password!");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment