#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int A, B;
    cin >> A >> B;
    if (A > B) swap(A, B);

    cout << (A*2 < B ? "No" : "Yes") << endl;

    return 0;
}