#include <iostream>
int main()
{
using namespace std;
int x;
cout << "pls enter a number less than 10 or bigger than 100" << endl;
cin >> x;
if (x >=10)
{
if(x>100)
cout << "thanks you had enter a number bigger than 100" << endl;
else
cout << "sorry pls enter a number less than 10 or bigger than 100" << endl;
}
else
cout << "you had enter a number less than 10" << endl;
return 0;
}