public static void Main()
Console.WriteLine("Please enter date of birth: day");
string day =Console.ReadLine();
int d = Convert.ToInt32(day);
Console.WriteLine("Please enter date of birth: month");
string month =Console.ReadLine();
int m = Convert.ToInt32(month);
Console.WriteLine("Please enter date of birth: year");
string year =Console.ReadLine();
int y = Convert.ToInt32(year);
DateTime now = DateTime.Today;
Console.WriteLine(age+10);