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