#! /usr/bin/env python3 N, M, X = map(int, input().split()) if 1 <= N <= 20 and 0 <= M <= N and 1 <= X <= N: print('YES') else: print('NO')