#include using namespace std; int main(){ int n, x; cin >> n >> x; cout << ((n == 1) ? "No" : "Yes") << endl; }