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