N,K,M = map(int,input().split(" ")) if K+M <= M: print("Yes") else: print("No")