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