#include using namespace std; int main() { double p, q; cin >> p >> q; string s = (2*p - p*q - 1) > 0 ? "YES" : "NO"; cout << s << endl; return 0; }