/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
scanf("%d %d", &a, &b);
printf("%d\n", (!a) && (!b) || (a&&b));
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d", &a, &b);
printf("%d\n", !(a||b));
return 0;
}
*/
/*
#include <stdio.h>
int main()
long long int a,b;
scanf("%lld %lld", &a, &b);
printf("%lld", a+b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
long long int a,b;
scanf("%lld %lld", &a, &b);
printf("%lld+%lld=%lld\n", a,b,a+b);
printf("%lld-%lld=%lld\n", a,b,a-b);
printf("%lld*%lld=%lld\n", a,b,a*b);
printf("%lld/%lld=%lld\n", a,b,a/b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d", a*24);
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%.3lf",(double)9/5*a+32);
return 0;
}
a>b :a가 b보다 크면 1, 아니면 0
a<b :
a>=b :
a==b :
a!=b :
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a ,&b);
printf("%d",a==b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a ,&b);
printf("%d",a*b);
return 0;
}
*/
/*
#include<stdio.h>
int main() {
int x;
scanf("%d", &x);
if(x > 50) {
printf("BIG");
}
else if(x > 30) {
// 50~31
printf("MIDDLE");
}
else if(x > 10) {
// 30~11
printf("MIEA");
}
else {
// 10 ~
printf("SMALL");
}
if(x % 2 == 0) {
if() {
}
else {
}
}
if() {
}
if() {
}
}
*/
/*
#include <stdio.h>
int main()
{
int x;
scanf("%d", &x);
if(x<10)
printf("small");
return 0;
}
*/
#include <stdio.h>
int main()
{
int x;
scanf("%d", &x);
if(x<10){
printf("small");
}
else{//10~
printf("big");
}
return 0;
}