a,b,c,d,s=map(int,input().split()) if a*c+b*d<=s: print('Yes') else: print('No')