#include int main() { bool a; int n; std::cin >> n; if (n % 2 == 0) { std::cout << "No" << std::endl; return 0; } std::cout << "Yes" << std::endl; }