#include<iostream> using namespace std; int main() { int i=1,j=100; for(int a=i;a<=j;a++) { if(a%2==1) { cout<<a<<" "; } else { } } }