a, b = map(int, input().split()) a *= a b *= b if a < b: print("Yes") else: print("No")