#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int x; cin >> x; if (x % 2) { cout << "No" << '\n'; } else { if(x==2) { cout << "No" << '\n'; } else { cout << "Yes" << '\n'; } } return 0; }