#include<iostream>
using namespace std;
int main()
{
int i;
int n;
cin >> n;
while (n)
{
i = rand()%100;
if(i == n)
{
else if(n>i)
{
cout << "high" << endl;
}
else
{
cout << "low" << endl;
}
cin >> n;
}
system("pause");
return 0;
}
using namespace std;
int main()
{
int i;
int n;
cin >> n;
while (n)
{
i = rand()%100;
if(i == n)
{
cout << "right!" << endl;
break;
}else if(n>i)
{
cout << "high" << endl;
}
else
{
cout << "low" << endl;
}
cin >> n;
}
system("pause");
return 0;
}