#
# ps13pr1.py (Problem Set 13, Problem 1)
# More Date clients programs
#
# Fill in header information here

# this import statement will allow your to use the Date class from ps11pr2.py
from ps12pr2 import Date

def nye_counts(start, end):

    d = {} # create an empty dictionary

    # add your code here




    return d
    
