#include using namespace std; int main() { int A; cin >> A; string ans = "YES"; if( A == 1 ) ans = "NO"; cout << ans << endl; }