x,y,z = map(int,input().split()) if x <= y and x <= z: print("YES") else: print("NO")