i, j, k = list(map(int, input().split())) if i <= j and i <= k: print('Yes') else: print('No')