Write a function that takes a dictionary and two other arguments, d, k and v,
and adds a new item to d with key k and value v. Example:
>>> d = {"tree": "fruit"}
>>> add_value(d, "cow", "milk")
>>> d
{"tree": "fruit", "cow": "milk"}
ⓘ