#include using namespace std; int main () { int a; cin >> a; if (a > 0) { if (a > 9) cout << "LIELAIS PLUS" << endl; else cout << "mazais plus" << endl; } else { if (a < -9) cout << "LIELAIS -" << endl; else if (a < 0) cout << "mazais -" << endl; else cout << "n-u-l-l-e" << endl; }; return 0; }