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