import math import decimal a, b = map(int, input().split()) print("Yes" if 2 * a < b**2 else "No")