| Current Path : /var/www/html/venkat/check3/file/rgiit/ |
| Current File : /var/www/html/venkat/check3/file/rgiit/rit2015084_2.c |
#include <stdio.h>
int main()
{
int i;
int no;
int counter = 3;
scanf ("%d", &no);
while (counter <= no) {
printf ("%d ", counter);
counter = counter + 3;
}
printf ("\n");
return 0;
}