n,m,k=map(int,input().split()) if n>=m+k: print('yes') else: print('No')