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