#include using namespace std; int main(void){ int a,b; cin >> a >> b; if(2*a < b || 2*b < a) cout << "No" << endl; else cout << "Yes" << endl; }