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/rit2015048_2.c

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