a,b,c=int(input().split()) if a+b>c: print("Yes") else: print("No")
------Input------ 70 480 94 ------Answer----- Yes ------Your output-----