import collections
d = collections.defaultdict(int)
d['a'] = 2
d['b'] = 1
res = [d.copy() for _ in range(2)]
res[0]['a'] -= 1
print res[1]