#include<iostream> using namespace std; int main() { int i,x; cin>>x; for(i=1;i<=x;i+=2) { printf("%d\n",i); } return 0; }