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