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