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