public static void Main()
DateTime birthday = Convert.ToDateTime("2010/10/12");
DateTime now = DateTime.Now;
if((birthday.Year + 21) > now.Year)
Console.WriteLine("You are not allowed to drink alcohol in the state of Wisconsin");
Console.WriteLine("You are allowed to drink alcohol in the state of Wisconsin");