a,b,c = map(int,input().split()) if a > b or b > c: print('No') else: print('Yes')