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