key = input().split()
value = input().split()
#zip函数,字典表的创建dict(zip(key,value))
dict1 = dict(zip(key,value))
print(dict1)