from sys import stdin, stdout a, b, c = map(int, stdin.readline().split()) if a <= b and a <= c: print('Yes') else: print('No')