c = list(map(int, input().split())) t = list(map(int, input().split())) total = 0 for cnt, time in zip(c, t): total += cnt * time if total <= t[-1]: print('Yes') else: print('No')