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