xs = [] for _ in range(3): xs.append(int(input())) xs = sorted(xs) if xs[0] + xs[1] > xs[2]: print('Yes') else: print('No')