A = list(map(int, input().split())) for _ in range(3): if A[0] + A[1] <= A[2]: print("No") break A.insert(0, A.pop()) else: print("Yes")