#include <bits/stdc++.h>
using namespace std;

int main() {
    int A,B;
    cin>>A>>B;
    cout<<(max(A,B)>min(A,B)*2?"No":"Yes")<<endl;
}