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