#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); long long int N; cin >> N; if(N==1) { cout << "NO" << '\n'; } else { for(int i=2;i<=sqrt(N);i++) { if(N%i==0) { cout << "YES" << '\n'; return 0; } } cout << "NO" << '\n'; } return 0; }