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