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