#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(int argc, const char * argv[]) {
// insert code here...
int x = (rand() % 100)+1;
int y;
int loop=0;
while(loop<1){
cin>>y;
if(y==x){
cout<<"You win!"<<endl;
loop=1;
}
else if (y>x){
cout<< "Lower"<<endl;
}
else if (y<x){
cout<< "Higher"<<endl;
}
}
return 0;
}