#include using namespace std; int main() { string ans[] = {"Yes", "No", "Yes", "Yes"}; int n; cin >> n; cout << ans[n % 4] << endl; }