#include <stdio.h> int main() { int b = 100; for(int i = 1;i<= b;i++) { //a[i]=i+1; if(i % 3 == 0) { continue; } printf("%d\n", i); } return 0 ; }