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/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;
}