A, B, C, D, S = map(int, input().split()) ans = 'Yes' if A * C + B * D <= S else 'No' print(ans)