public static void Main()
Console.WriteLine("Please Enter Your Name In The Console");
string enteredName = Console.ReadLine();
Console.WriteLine("I hope You Are Having A Good Day " + enteredName);
Console.WriteLine("Please Enter Your Age");
int age = int.Parse(Console.ReadLine());
Console.WriteLine("Sweet " + age + "!");
Console.WriteLine("What Day Of The Month Were You Born?");
int DayMonth = int.Parse(Console.ReadLine());
Console.WriteLine("What Month Were You Born?");
string Month = Console.ReadLine();
Console.WriteLine("Ok Now What Year?");
int Year = int.Parse(Console.ReadLine());
Console.WriteLine("So You Were Born " + DayMonth + " " + Month + " " + Year);