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