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