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