C.py 123 B

123456
  1. import math
  2. W,H,x,y,r= map(int, input().strip().split())
  3. if W-r>=x>=r and H-r>=y>=r:
  4. print('Yes')
  5. else:
  6. print('No')