| Current Path : /var/www/html/venkat/check3/file/rgiit/ |
| Current File : /var/www/html/venkat/check3/file/rgiit/rit2015028_2.c |
#include<stdio.h>
int main()
{
int number , temp;
scanf("%d", &number );
for(temp = 1 ; temp <= number ; temp++)
{
if( temp % 3 == 0)
printf( "%d ",temp);
}
printf( "\n" );
return 0;
}