# include<iostream> using namespace std; int main(){ int a; scanf("%d",&a); if(a % 2 != 0){ printf("Yes\n"); } if(a % 2 == 0){ printf("No\n"); } }