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