a = input().split() b = map(float,input().split()) c = {} c = dict(zip(a,b)) print(c) print(b)