Map: Delete
For a dictionary M that stores elements formed by a pair of a string key and an integer value, perform a sequence of the following operations. Note that each key in M must be unique.
insert(key, x): Insert an element formed by a pair of key and x to M.
get(key): Print the value with the specified key. Print 0 if there is no such element.
delete(key): Delete the element with the specified key.