import sys input = sys.stdin.readline I, J, K = map(int, input().split()) print("Yes" if I<=J and I<=K else "No")