import sys def debug(*args): print(*args, file=sys.stderr) n, m, k =map(int, input().split()) print('Yes' if m+k <= n else 'No')