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