#include<stdio.h>
main()
{
	int a;
	int x;
	for(a=1;x=11*a+4;a++)
	{
	if(x%3==2&&x%5==3&&x%7==5&&x%11==4)
	{
	printf("最少人数是:%d\n",x);
	break;
	}
	}
}