s=input().split() a=s[0] b=s[1] c=s[2] a=int(a) b=int(b) c=int(c) if a+b>c: print('Yes') else: print('No')