#include<iostream> using namespace std; int main() { char ch; cin>>ch; if(ch%2==1) { cout<<"YES"; } else { cout<<"NO"; } return 0; }