#include int main() { int N; std::cin >> N; std::cout << ((10 <= N && N < 100) ? "Yes\n" : "No\n"); }