#include using namespace std; int main(){ int64_t N; cin >> N; if(N%2 == 0){ cout << "Yes" << endl; } else{ cout << "No" << endl; } }