Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/check3/file/rgiit/
Upload File :
Current File : /var/www/html/venkat/check3/file/rgiit/rit2015085_2.c

#include <stdio.h>
int main()
{
int n;
int i;
int q;
int count = 1;
scanf( "%d", &n );
q = n/3;
	while( count<=q )
		{
			i = 3*count;
			++count;
			printf("%d\t", i);
		}
	
	return 0;
}