| Current Path : /var/www/html/venkat/check3/file/rgiit/ |
| 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;
}