public static void Main()
Console.WriteLine("Hello I am a genie, you have three wishes");
Console.WriteLine(" what would you like to wish for?");
string firstWish = Console.ReadLine();
Console.WriteLine(" what would you like to wish for?");
string secondWish=Console.ReadLine();
Console.WriteLine(" what would you like to wish for?");
string thirdWish=Console.ReadLine();
Console.WriteLine("Your wishes are " + firstWish +" " + secondWish+" " + thirdWish);