#include<stdio.h>

int main()
{
	int a;
	scanf("%d",&a);

	if ( (a >= 10 ) && ( a <= 20) )
	  	 printf("10以上20以下です。 \n");
	return 0;
}
