def candy_distribution(A, B): if A > 2*B or B > 2*A: return "No" else: return "Yes" A, B = map(int, input().split()) print(candy_distribution(A, B))