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