n = int(input()) a,b,c = map(int,input().split()) if(a < b): if(n - c + a + 1 > n): print('No') else: print('Yes') else: if(n - a + c + 1 > n): print('No') else: print('Yes')