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