def main(): A = list(map(int, input().split())) A.sort() if A[0] + A[1] <= A[2]: return "No" else: return "Yes" print(main())