#include using namespace std; using namespace chrono; #if __has_include() #include using namespace atcoder; #endif int main() { int64_t x; cin >> x; vector hs = {0, 2, 5}; for (auto &&a : hs) { if (2 * a == x) { cout << "Yes" << endl; return 0; } } cout << "No" << endl; return 0; }