import math W,H,x,y,r= map(int, input().strip().split()) if W-r>=x>=r and H-r>=y>=r: print('Yes') else: print('No')