I,J,K = map(int, input().split()) ans = I<=J and I<=K if ans: print('Yes') else: print('No')