A, B, C = map(int, input().split()) print("Yes" if A < B + C and B < C + A and C < A + B else "No")