#include using namespace std; using Graph = vector>; #define rep(i,n) for(int i=0; i<(n); i++) #define INF ((1LL<<62)-(1LL<<31)) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() typedef long long ll; typedef pair pl; typedef tuple tupl; int main() { int n; cin >> n; if(10<=n&&n<=99) cout << "Yes" << endl; else cout << "No" << endl; return 0; }