#include using namespace std; int main() { int n; cin >> n; if (10 <= n && n < 100) { cout << "Yes" << endl; } else { cout << "No" << endl; } }