public static void Main()
Console.WriteLine("Hey you, what's your name?");
string name = Console.ReadLine();
Random random_number = new Random();
int fortune_number = random_number.Next(1, 11);
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 9, and your lucky color is red. Tonight you'll be eating a delicious meal with your friend!");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 2)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 24, and your lucky color is blue. You'll be finding your destined lover soon, good luck!");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 3)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 2, and your lucky color is green, and because of that, you won't get sick for the next 2 months.");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 4)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 8, and your lucky color is yellow, so you'll be getting money soon. Make sure you pay attention!");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 5)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 1, and your lucky color is teal Hmm... looks like blue skies are ahead for everyone soon!");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 6)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 15, and your lucky color is purple. Looks like you'll do something heroic soon! Good on you.");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 7)
Console.WriteLine("Well hey there " + name+ "! Your luck number is 10 your lucky color is Orange. It looks like you're going to be in a good mood all day!");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 8)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is 16, and your lucky color is pink. Hmm... I suggest going to a cave. Rare stones will find you.");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 9)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is... 13? So your lucky color is grey... annnd it looks like my balls fogging up.");
Console.WriteLine("Sorry but I can't give a fortune to you like this. Sorry about that.");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");
else if (fortune_number == 10)
Console.WriteLine("Well hey there " + name+ "! Your lucky number is... 4?! Get away from me! Your color is black! A wave of misfortune will soon come.");
Console.WriteLine("(4 is unlucky because in Chinese it's pronounced the same way as death)");
Console.WriteLine("Want to try again? (y/n)");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")
Console.WriteLine("Well see you around then");