A,B = map(int,input().split()) ans = 'Yes' if A * A < B * B else 'No' print(ans)