#include<iostream> using namespace std; int main(){ // int i,j; // cin>>i>>j; for(long long a=3;a<=100;a+=3){ cout<<a<<" "; } return 0; }