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