#include <iostream>

using namespace std;

int main() {
    int n;
    cout << (n & 1 ? "YES" : "NO");
    return 0;
}