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