#include<iostream> using namespace std; int main(){ int n; for(int shabi=3;shabi<=100;shabi+=3){ cout<<shabi<<" "; } return 0; }