#t = int(input()) t = 1 for _ in range(t): a,b,c,d,s = map(int, input().split()) if a+c + b*d <= s: print("Yes") else: print("No")