c a b 3 1 2
a:1 b:2 c:3
keys = input().split() vals = input().split() d = dict(zip(keys, vals)) for k in sorted(d): print(f'{k}:{d[k]}')