Return sum of all values in a dictionary. Example: {'a':1,'b':2,'c':3} => 6
Implement this function:
def dict_value_sum(d: dict) -> int:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: d.
Input
{'a': 1, 'b': 2, 'c': 3}
Output
6