#include using namespace std; typedef long long ll; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); ll n; cin>>n; if(n==0 || n==4 || n==10){ cout << "Yes\n"; } else cout << "No\n"; }