import math

a, b = map(int, input().split())

print("Yes" if 2 * math.log2(a) < math.log2(b**2) else "No")