using System;
public class Program
{
public static void Main()
// Program 2
// Save the user's password in a variable called password
// The password is Password2
// Create a program that asks for, and checks, the user's password
// If the password is incorrect, tell them they gave the wrong password
string password = "Password2";
string userInput;
Console.WriteLine("What is the password");
userInput = Console.ReadLine();
if ( userInput != password )
Console.WriteLine("wrong password");
}