#include using namespace std; int main(){ int n;cin>>n; for(int i = 1; n >= i; i+=2){ cout << i; if(i+2 <= n)cout << " "; } cout << endl; }