p, q = map(float, input().split()) threshold = 1.0 / (2.0 - q) print("YES" if p > threshold else "NO")