i, j, k = map(int, input().split()) if i <= j <= k: print('Yes') else: print('No')