def fun(a, b):
    return "Yes" if a >= b else "No"


n, m, k = map(int, input().split())
print(fun(n, m + k))