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