#include using namespace std; using ll = long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int x; cin >> x; cout << ((x == 0 || x == 4 || x == 10) ? "Yes" : "No") << endl; return 0; }