abc = list(map(int, input().split())) abc.sort() a, b, c = abc if a + b > c: print("Yes") else: print("No")