A, B, C, D, S = map(int, input().split()) if S >= C*A + D*B: print("Yes") else: print("No")