"1 Write a Python program to combine two dictionaries into one by adding values for common keys. Input contains two comma separated dictionaries. Print the new dictionary and create a tuple which contains unique values in sorted order
Sample Input a: 100, b: 100, c: 200, d: 300 a: 300, b: 200, d: 400, e: 200
Sample Output {'a': 400, 'b': 300, 'c' 200,'d: 700, 'e': 200} Values: (200,300, 400, 700)"