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