public static void Main()
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine(name + ", your lucky number is 1 and you lucky color is purple.");
Console.WriteLine("Tomorrow you will find $100 dollars.");
Console.WriteLine(name + ", your lucky number is 2 and you lucky color is blue.");
Console.WriteLine("In 3 days, you will win a new porsche.");
Console.WriteLine(name + ", your lucky number is 3 and you lucky color is green.");
Console.WriteLine("Today, you will get a free mansion.");
Console.WriteLine(name + ", your lucky number is 4 and you lucky color is black.");
Console.WriteLine("You will find a huge amount of gold in 16 days.");
Console.WriteLine(name + ", your lucky number is 5 and you lucky color is yellow.");
Console.WriteLine("The weather will be fantastic wherever you go, for the entire month.");
Console.WriteLine(name + ", your lucky number is 6 and you lucky color is pink.");
Console.WriteLine("You will find true love.... someday.");
Console.WriteLine(name + ", your lucky number is 7 and you lucky color is red.");
Console.WriteLine("You will find source where there is unlimited money in all currencies.");
Console.WriteLine(name + ", your lucky number is 9 and you lucky color is orange.");
Console.WriteLine("You will find free tickets to a movie of your wish.");
Console.WriteLine(name + ", your lucky number is 10 and you lucky color is violet.");
Console.WriteLine("You will get a free gold-plated private jet.");
Console.WriteLine("Do you want to restart this program? y/n");
string choice = Console.ReadLine();
if (choice == "Y" || choice == "y")
Console.WriteLine("The program has ended you may leave");}