q=input().split() a=q[0] b=q[1] c=q[2] a=int(a) c=int(c) b=int(b) if b<=a<=c: print("yes") else: print("no")