public static void Main()
Console.WriteLine("A bunch o' people are working on their password systems here.");
Console.WriteLine("Some people don't realize the efficiency of using a multidimensional string array to store their usernames and passwords!!!");
Console.WriteLine("Feel free to use this, fork it, do anything with it; it's free. Go ahead. Act like it's yours.");
Console.WriteLine("Disclaimer:");
Console.WriteLine("If you aren't experienced enough to copy the code below without copying this stuff...");
Console.WriteLine("... it probably means you shouldn't. If you have a teacher, they would see right through this.");
Console.WriteLine("Also, if you get in trouble for copying this, it isn't my fault so don't sue or anything, because remember: it's practically yours.");
Console.WriteLine("----");
Console.WriteLine("So, here's some really simple code, using only 21 lines, that allows you to make usernames and passwords really easily.");
Console.WriteLine("~~~~");
string[,] UandP = new string[,] {{"Username","Password"},{"MissileLaunchCode","125815"},{"Spaghetti","Meatball"}};
Console.WriteLine("Enter a username:");
string Input = Console.ReadLine();
for (int i = 0; i < UandP.GetLength(0); i++)
Console.WriteLine("Username match found. Enter a password:");
if (UandP[i,1] == Console.ReadLine())
Console.WriteLine("Correct password; success!");
Console.WriteLine("Invalid password.");
Console.WriteLine("Username does not match at index "+i+"...");