Console.WriteLine("Please enter your name");
string enteredName = Console.ReadLine();
Console.WriteLine("I hope you're having a good day " + enteredName);
Console.WriteLine("Please enter age");
string age = Console.ReadLine();
Console.WriteLine("Sweet " + age + "!");
Console.WriteLine("Please enter the day of the month you were born");
string day = Console.ReadLine();
Console.WriteLine("Please enter the month you were born");
string month = Console.ReadLine();
Console.WriteLine("Please enter the year you were born");
string year = Console.ReadLine();
Console.WriteLine("You were born on the " + day + "th of " + month + " in " + year + ", that's awesome!");