// No.159 刺さらないUSB // https://yukicoder.me/problems/no/159 // #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); double p, q; cin >> p >> q; double p1 = (1 - p) * 1 * q; double p2 = p * (1 - q) * 1 * q; if (p1 < p2) cout << "YES" << endl; else cout << "NO" << endl; }