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