import sys input = sys.stdin.readline A,B,C,D,S=list(map(int,input().split())) if A*C+B*D<=S: print("Yes") else: print("No")