A, B, C = (int(x) for x in input().split()) if abs(B-C) < A < abs(B+C): print("Yes") else: print("No")