n = int(input()) a,b,c = map(int,input().split()) if a == c: print('No') elif a < b and a < c: print('Yes') elif b < a and c < a: print('Yes') else: print('No')