#include
#include
#include
using
namespace std;
bool check(int x)
{
int i,flag=0;
for(i=2;i<=x;i++)
{
if(x%i==0)
flag++;
}
if(flag==2)
return 1;
else
return 0;
}
int main()
{
int j,l=0;
for(j=2;j<=100;j++)
{
if(check(j))
{
cout<
l++;
if(l==5)
{
cout<
l=0;
}
}
}
return 0;
}