#include <bits/stdc++.h> using namespace std; int main() { int n = 100; for (int i = 1; i <= n; i++) { if (i % 3== 0) { cout << i << " "; } } cout << endl; return 0; }