What is the output of the following code? d = {'b': 1, 'a': 10, 'c': 22} t = list(d.items()) t.sort() print(t)