public static void Main()
while (mad != "n" && mad != "N")
{Console.WriteLine("Please enter your name? This will decide your fortune.");
string name = Console.ReadLine();
int number = f.Next(1, 11);
Console.WriteLine(" " + name + " your lucky number is 56. Your lucky color is red and you will win the 2 billion dollar lottery.");
Console.WriteLine(" " + name + " your lucky number is 22. Your lucky color is blue and you will get a day off work today.");
Console.WriteLine(" " + name + " your lucky number is 2. Your lucky color is orange and you will get new Jordans.");
Console.WriteLine(" " + name + " your lucky number is 7. Your lucky color is green and you will become the next pro basketball player.");
Console.WriteLine(" " + name + " your lucky number is 732. Your lucky color is yellow and you will get a new phone.");
Console.WriteLine(" " + name + " your lucky number is 32. Your lucky color is purple and it will rain gold in your area.");
Console.WriteLine(" " + name + " your lucky number is 99. Your lucky color is black and you will get a fresh nice haircut.");
Console.WriteLine(" " + name + " your lucky number is 73. Your lucky color is white and you will pass all your test and quizes this year.");
Console.WriteLine(" " + name + " your lucky number is 109. Your lucky color is violet and you will get a 100 on all regents.");
Console.WriteLine(" " + name + " your lucky number is 1200. Your lucky color is brown and you will be Valedictorian.");
Console.WriteLine("Would you like to restart? Y/N?");
string choice = Console.ReadLine();
if (choice == "Y" || choice == "y")
Console.WriteLine("Press n to quit or anything else to continue");
mad = Console.ReadLine();