N, X = map(int, input().split()) C = list(map(int, input().split())) if C[0] <= X <= C[-1]: print('Yes') else: print('No')