#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(int i=0;i> N; if(N%2==1){ cout << "No" << endl; return 0; } ll n=N/2; if(n%4==0 || (n+1)%4==0){ cout << "Yes" << endl; }else{ cout << "No" << endl; } return 0; }