#include <stdio.h> int main() { int a=100; int p = 0; for(int i = 1;i < a + 1;i ++) { if(i % 3 == 0) { printf("%d ", i); } } return 0; }