#include <iostream> using namespace std; int main() { int n; cin >> n; if (1 < n and n < 100) { cout << "yes"; } return 0; }