a, b = map(int, input().split())
if a < abs(b):
    print("Yes")
else:
    print("No")