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