A, B, C, D, S = map(int, input().split()) desks = A * C chairs = B * D total = desks + chairs if (S - total) <= 0: print("no") else: print("yes")