#include using namespace std; typedef long long ll; template ostream& operator<<(ostream &os, vector &v){ string sep = " "; if(v.size()) os << v[0]; for(int i=1; i istream& operator>>(istream &is, vector &v){ for(int i=0; i> v[i]; return is; } #ifdef DBG void debug_(){ cout << endl; } template void debug_(T&& x, Args&&... xs){ cout << x << " "; debug_(forward(xs)...); } #define dbg(...) debug_(__VA_ARGS__) #else #define dbg(...) #endif int main() { ios_base::sync_with_stdio(false); cout << setprecision(20) << fixed; int n; cin >> n; cout << (10<=n&&n<=99?"Yes":"No") << endl; return 0; }