n,m,k = map(int, input().split()) if n < (m+k): print("No") else: print("Yes")