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