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")