#include <bits/stdc++.h> using namespace std; int main(){ int n=100; for(int i=1;i<=n;i-=3){ cout<<i<<endl; } }