Create a structure named DOB to store a date containing the year, month, and day.
using struct keyword
struct DOB { var year: Int var month: Int var day: Int }