#include int main() { int n; scanf("%d", &n); int i; for (i = (n + 2) / 2; i < n; i++) printf("%d ", i); printf("%d\n", n); return 0; }