#include <iostream>
using namespace std;
int main()
{
int x;
cin >> x;
cout << (((x >= 100) && (x <= 200)) ? "yes" : "no") << endl;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int x;
cin >> x;
cout << (((x >= 100) && (x <= 200)) ? "yes" : "no") << endl;
return 0;
}