| Current Path : /var/www/html/venkat/old/ |
| Current File : /var/www/html/venkat/old/lit2015035_1.c |
#include<stdio.h>
void composite(int,int);
int main()
{
int first,last,i,j;
scanf("%d%d",&first,&last);
composite(first,last);
return 0;
}
void composite(int a,int b)
{
int i,j,flag;
for(i=a;i<=b;i++)
{
flag=0;
for(j=2;j<=i-1;j++)
{
if(i%j==0)
flag=1;
}
if(flag==1)
{
printf("%d ",i);
}
}
}