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