#include <stdio.h> void main () { int i; for(i=0;i<200;i++) { printf("%d\t",i); if( (i % 3 == 0) && (i % 10 == 6) ) { printf("%d\t",i); } } }