#include using namespace std; int main() { int P; cin >> P; if(P%4==3){ cout << "No" << endl; return 0; } cout << "Yes" << endl; }