I, J, K = [int(x) for x in input().split()] # print(I, J, K) if I <= J and I <= K: print("Yes") else: print("No")