Create dict from list of keys and list of values.
Implement this function:
def dict_from_two_lists(keys: list, values: list) -> dict:
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: keys, values.
Input
['a', 'b', 'c']
[1, 2, 3]
Output
{'a': 1, 'b': 2, 'c': 3}