// Directions: Intermediate #1-2
// 1) 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.
// 2) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
DateTime birthDay = new DateTime(2003, 08, 27);
DateTime rNow = DateTime.Now;
if (birthDay < rNow)
Console.WriteLine("You are of legal drinking age!");
}
else
Console.WriteLine("You are not of legal drinking age!");