#include using namespace std; int main () { int a; cin >> a; if (a > 0) cout << "BIG" << endl; else cout << "small" << endl; return 0; }