#include <bits/stdc++.h>
using namespace std;
int main(){
  long long A, B;
  cin >> A >> B;
  B = abs(B);
  if (A < B){
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}