n, m, k = map(int, input().split()) print("Yes" if n - m - k >= 0 else "No")