x = map(str, input().split())y = map(float, input().split())c = dict(zip([x[0], x[1], x[2], x[3]], [y[0], y[1], y[2], y[3]]))print(c)왜 출력이안대져 ㄷㄷ
x[0], x[1] 이런식으로 할당안하고 zip(x, y)로하면 잘돼여. 먼차이임?