#include<bits/stdc++.h>
using namespace std;
// 完成判定是否是两位数的函数 调用函数解题
bool check(int x)//函数名
{
return 10<=x && x<=99;//直接框定x在两位数范围内
}
int main() {
int n;//创建变量
cin >> n;//输入
if(check(n))//直接使用返回的布尔值判断要不要输出yes
{
cout << "yes";
}
else //不是就输出no
cout << "no";
return 0;
}