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