a, b, c, d = list(map(int, input().split()))
p, q, r, s, t = list(map(int, input().split()))

ans = a * p + b * q + c * r + d * s

print("Yes" if ans <= t else "No")