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