import sys input = sys.stdin.readline N, M, K = map(int, input().split()) if N>=M+K: print("Yes") else: print("No")