// Directions: Intermediate #1-2
// 1) Fork this to your account.
// 2) Add code to the Main method:
// a) Add a DateTime variable for someone's birthday. Assign a value to it.
// b) Add an if block to determine if the person is of the legal drinking age in Wisconsin (21) utilizing DateTime.Now.
// c) WriteLine an appropriate message.
// 3) Saturday August 26 2023 (ish) is under the legal drinking age
// 4) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
}