arr = [int(input()) for _ in range(3)] summ = sum(arr) f = True for i in arr: if i >= summ - i: f = False if f: print("YES") else: print("NO")