p, q = map(float, input().split()) if 2 * p - p * q > 1: print('YES') else: print('NO')