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